├── .gitignore ├── README.md └── Reactive_Water_V3_4-20 ├── Build └── WindowsNoEditor │ └── FileOpenOrder │ ├── CookerOpenOrder.log │ └── EditorOpenOrder.log ├── Config ├── DefaultEditor.ini ├── DefaultEditorPerProjectUserSettings.ini ├── DefaultEngine.ini ├── DefaultGame.ini └── DefaultInput.ini ├── Content ├── _Marvelmaster_infinite_reactive_water_ │ ├── Blueprints │ │ ├── Ball_BP.uasset │ │ ├── GPU_Particle_Rain_BP.uasset │ │ ├── GooParticles_BP.uasset │ │ ├── ImpactAtLocation_BP.uasset │ │ ├── RainAtLocation_BP.uasset │ │ ├── WaterBody_BP0.uasset │ │ └── passive │ │ │ ├── GlobalUpdater_BP.uasset │ │ │ └── WaterBodyFunctions.uasset │ ├── Grass │ │ ├── ForGrass_MPC.uasset │ │ ├── Grass_VPainted.uasset │ │ ├── Materials │ │ │ ├── SimpleGrassSimulation_mat.uasset │ │ │ └── SimpleGrassSimulation_mat_Inst.uasset │ │ └── Textures │ │ │ ├── grass_D.uasset │ │ │ └── grass_N.uasset │ ├── ImpactAtLocation_BP.uasset │ ├── IpactAtLocation_BP.uasset │ ├── Maps │ │ ├── DynamicWaterFillingExample.umap │ │ ├── ReactiveWater_Giant.umap │ │ └── ReactiveWater_Showcase.umap │ ├── Materials │ │ ├── BasicMaterials │ │ │ ├── BasicShapeMaterial_TwoSided.uasset │ │ │ ├── CubeMaterial.uasset │ │ │ ├── Gold_mad.uasset │ │ │ ├── UnderWaterShake_PP_mat.uasset │ │ │ ├── UnderWaterShake_PP_mat_Inst.uasset │ │ │ ├── White_TwoSided_mat.uasset │ │ │ ├── caustics_mat.uasset │ │ │ ├── caustics_mat_Inst.uasset │ │ │ ├── cobble_d_Mat.uasset │ │ │ ├── cobble_mat.uasset │ │ │ ├── debug_mat_outer.uasset │ │ │ ├── grey_mat.uasset │ │ │ ├── invisible_mat.uasset │ │ │ ├── sand_01_Mat_Inst.uasset │ │ │ ├── sand_mat.uasset │ │ │ ├── sand_mat_Inst.uasset │ │ │ ├── sand_mat_Inst_giant.uasset │ │ │ └── test.uasset │ │ ├── ComputeMaterials_and_RenderTargets │ │ │ ├── ComputeNormal.uasset │ │ │ ├── DefaultHeightfield.uasset │ │ │ ├── DefaultHeightfieldNormal.uasset │ │ │ ├── DepthCapture.uasset │ │ │ ├── ForceSplat.uasset │ │ │ ├── Height0.uasset │ │ │ ├── Height1.uasset │ │ │ ├── Height2.uasset │ │ │ ├── HeightSim.uasset │ │ │ ├── Raint_Mat.uasset │ │ │ ├── RenderTargetForGrassBend.uasset │ │ │ └── SC_Debug_RT.uasset │ │ ├── DebugMaterials │ │ │ ├── DebugNoDepth.uasset │ │ │ ├── PlaneCollider_mat.uasset │ │ │ ├── RainIndicator_mat.uasset │ │ │ ├── buoyancy_plane_mat.uasset │ │ │ └── debug_mat_red.uasset │ │ ├── MaterialFunctions+Collections │ │ │ ├── GetUVs.uasset │ │ │ ├── MaskUV.uasset │ │ │ ├── MaskUV_Normals.uasset │ │ │ └── Motion_4WayChaos.uasset │ │ ├── ParticleMaterials │ │ │ ├── Rainfall_mat.uasset │ │ │ ├── Splash_mat.uasset │ │ │ ├── water_emitter_mat.uasset │ │ │ └── water_emitter_mat_Inst.uasset │ │ ├── WaterMaterial.uasset │ │ ├── WaterMaterial_Inst_brown.uasset │ │ ├── WaterMaterial_Inst_clear.uasset │ │ ├── WaterMaterial_Inst_green.uasset │ │ ├── WaterMaterial_Inst_milk.uasset │ │ ├── WaterMaterial_Inst_red.uasset │ │ ├── WaterMaterial_Inst_water.uasset │ │ ├── cobble_d_Mat.uasset │ │ └── sand_01_Mat_Inst.uasset │ ├── Meshes │ │ ├── Cube.uasset │ │ ├── Cylinder.uasset │ │ ├── Plane.uasset │ │ ├── Sphere.uasset │ │ ├── Splash.uasset │ │ ├── Splash2.uasset │ │ ├── Star.uasset │ │ ├── WaterPlaneForDisplacement_260kV.uasset │ │ ├── WaterPlaneForNormal_4V.uasset │ │ └── WaterPlaneForTesselation_4kV.uasset │ ├── Particles │ │ ├── 399157__strathamer__rainy-day.uasset │ │ ├── Bubbles_PS.uasset │ │ ├── Rain_PS.uasset │ │ ├── Rainfall_ps.uasset │ │ ├── Splash_PS.uasset │ │ ├── WaterJetSound.uasset │ │ ├── WaterJetStatic_PS.uasset │ │ └── WaterJet_PS.uasset │ ├── Textures │ │ ├── DebugTextures │ │ │ ├── DebugDistance.uasset │ │ │ ├── PlaneColliderTexture.uasset │ │ │ └── buoyancy_plane.uasset │ │ ├── ImpactTexture.uasset │ │ ├── RainDrop.uasset │ │ ├── ShapeMasks │ │ │ ├── MarvelmasterMask.uasset │ │ │ ├── RoundMask.uasset │ │ │ ├── StandardMask.uasset │ │ │ └── ZeldaMask.uasset │ │ ├── caustics_1024.uasset │ │ ├── cobble_d.uasset │ │ ├── cobble_n.uasset │ │ ├── sand_01_Base_Color.uasset │ │ ├── sand_01_Height.uasset │ │ ├── sand_01_Normal.uasset │ │ ├── sand_01_Roughness.uasset │ │ ├── sand_01_wet_Roughness.uasset │ │ └── water_normal.uasset │ ├── ThirdPersonBP │ │ ├── Blueprints │ │ │ ├── Ball.uasset │ │ │ ├── ThirdPersonGameMode.uasset │ │ │ ├── WaterTPCharacter.uasset │ │ │ └── WaterTPGameMode.uasset │ │ └── Mannequin │ │ │ ├── Animations │ │ │ ├── ThirdPersonIdle.uasset │ │ │ ├── ThirdPersonJump_Loop.uasset │ │ │ ├── ThirdPersonJump_Start.uasset │ │ │ ├── ThirdPersonRun.uasset │ │ │ ├── ThirdPersonWalk.uasset │ │ │ ├── ThirdPersonWalk1.uasset │ │ │ ├── ThirdPerson_Jump.uasset │ │ │ ├── Water_TP_AnimBP.uasset │ │ │ └── Water_TP_IdleRun_2D.uasset │ │ │ └── Character │ │ │ ├── MOB1_Jog_F_IPC.uasset │ │ │ ├── MOB1_Run_F_IPC.uasset │ │ │ ├── MOB1_Stand_Relaxed_Death_B_IPC.uasset │ │ │ ├── MOB1_Stand_Relaxed_Death_B_IPC_Montage.uasset │ │ │ ├── MOB1_Walk_F_IPC.uasset │ │ │ ├── Materials │ │ │ ├── M_UE4Man_Body.uasset │ │ │ ├── M_UE4Man_ChestLogo.uasset │ │ │ └── MaterialLayers │ │ │ │ ├── ML_GlossyBlack_Latex_UE4.uasset │ │ │ │ ├── ML_Plastic_Shiny_Beige.uasset │ │ │ │ ├── ML_Plastic_Shiny_Beige_LOGO.uasset │ │ │ │ ├── ML_SoftMetal_UE4.uasset │ │ │ │ ├── T_ML_Aluminum01.uasset │ │ │ │ ├── T_ML_Aluminum01_N.uasset │ │ │ │ ├── T_ML_Rubber_Blue_01_D.uasset │ │ │ │ └── T_ML_Rubber_Blue_01_N.uasset │ │ │ ├── Mesh │ │ │ ├── Water_SK_Mannequin.uasset │ │ │ ├── Water_SK_Mannequin_PhysicsAsset.uasset │ │ │ └── Water_UE4_Mannequin_Skeleton.uasset │ │ │ └── Textures │ │ │ ├── UE4Man_Logo_N.uasset │ │ │ ├── UE4_LOGO_CARD.uasset │ │ │ ├── UE4_Mannequin_MAT_MASKA.uasset │ │ │ └── UE4_Mannequin__normals.uasset │ ├── WaterBody_BP0.uasset │ └── WaterMaster_BP.uasset └── cobble_d_Mat.uasset ├── Intermediate ├── AssetRegistryCache │ ├── 0cefa8ba.bin │ ├── 0e234951.bin │ ├── 0ea4f87b.bin │ ├── 0f295fb2.bin │ ├── 1f683343.bin │ ├── 2657c409.bin │ ├── 2f5244c7.bin │ ├── 311563bb.bin │ ├── 416abec1.bin │ ├── 4c40c0d2.bin │ ├── 50a675f9.bin │ ├── 52ed2538.bin │ ├── 54147d67.bin │ ├── 598e6f35.bin │ ├── 6ee03440.bin │ ├── 7855498b.bin │ ├── 7fc3b60a.bin │ ├── 84125109.bin │ ├── 866581fd.bin │ ├── 8c0e1344.bin │ ├── 8eacc34e.bin │ ├── 9456d10d.bin │ ├── 97eb97bd.bin │ ├── 9ab3dde9.bin │ ├── ab41d4d5.bin │ ├── aed78e8e.bin │ ├── b0597a29.bin │ ├── c90e3f55.bin │ ├── c9e91a3f.bin │ ├── d091bc60.bin │ ├── d20c9ec6.bin │ ├── d8670c7f.bin │ ├── dd80cf3a.bin │ ├── e6669a6b.bin │ ├── e912cf9e.bin │ └── f0d5030c.bin ├── CachedAssetRegistry.bin ├── Config │ └── CoalescedSourceConfigs │ │ ├── AISupport.ini │ │ ├── ActorSequence.ini │ │ ├── AlembicImporter.ini │ │ ├── AndroidDeviceProfileSelector.ini │ │ ├── AndroidMedia.ini │ │ ├── AndroidMoviePlayer.ini │ │ ├── AndroidPermission.ini │ │ ├── AppleARKit.ini │ │ ├── AppleImageUtils.ini │ │ ├── AppleMoviePlayer.ini │ │ ├── AppleVision.ini │ │ ├── ArchVisCharacter.ini │ │ ├── AssetManagerEditor.ini │ │ ├── AudioCapture.ini │ │ ├── AvfMedia.ini │ │ ├── BackChannel.ini │ │ ├── CLionSourceCodeAccess.ini │ │ ├── CableComponent.ini │ │ ├── CharacterAI.ini │ │ ├── CodeLiteSourceCodeAccess.ini │ │ ├── Compat.ini │ │ ├── Crypto.ini │ │ ├── CryptoKeys.ini │ │ ├── CustomMeshComponent.ini │ │ ├── DataValidation.ini │ │ ├── DatasmithContent.ini │ │ ├── DeviceProfiles.ini │ │ ├── EditableMesh.ini │ │ ├── Editor.ini │ │ ├── EditorKeyBindings.ini │ │ ├── EditorLayout.ini │ │ ├── EditorPerProjectUserSettings.ini │ │ ├── EditorSettings.ini │ │ ├── Encryption.ini │ │ ├── Engine.ini │ │ ├── ExampleDeviceProfileSelector.ini │ │ ├── FacialAnimation.ini │ │ ├── Game.ini │ │ ├── GameUserSettings.ini │ │ ├── GameplayTags.ini │ │ ├── GameplayTagsEditor.ini │ │ ├── GameplayTagsList.ini │ │ ├── GeometryCache.ini │ │ ├── GitSourceControl.ini │ │ ├── GoogleCloudMessaging.ini │ │ ├── HTML5Networking.ini │ │ ├── Hardware.ini │ │ ├── HoudiniEngine.ini │ │ ├── IOSDeviceProfileSelector.ini │ │ ├── ImgMedia.ini │ │ ├── ImmediatePhysics.ini │ │ ├── Input.ini │ │ ├── InternationalizationExport.ini │ │ ├── KDevelopSourceCodeAccess.ini │ │ ├── LauncherChunkInstaller.ini │ │ ├── LevelSequenceEditor.ini │ │ ├── LightPropagationVolume.ini │ │ ├── Lightmass.ini │ │ ├── LinearTimecode.ini │ │ ├── LinuxDeviceProfileSelector.ini │ │ ├── LiveLink.ini │ │ ├── LocalizationServiceSettings.ini │ │ ├── LocationServicesBPLibrary.ini │ │ ├── MacGraphicsSwitching.ini │ │ ├── MagicLeap.ini │ │ ├── MagicLeapEmulator.ini │ │ ├── MagicLeapMedia.ini │ │ ├── MatineeToLevelSequence.ini │ │ ├── MediaCompositing.ini │ │ ├── MediaPlayerEditor.ini │ │ ├── MeshEditor.ini │ │ ├── MobileLauncherProfileWizard.ini │ │ ├── MobilePatchingUtils.ini │ │ ├── NUTUnrealEngine4.ini │ │ ├── NetcodeUnitTest.ini │ │ ├── NullSourceCodeAccess.ini │ │ ├── OculusVR.ini │ │ ├── OnlineSubsystem.ini │ │ ├── OnlineSubsystemGooglePlay.ini │ │ ├── OnlineSubsystemIOS.ini │ │ ├── OnlineSubsystemNull.ini │ │ ├── OnlineSubsystemUtils.ini │ │ ├── Paper2D.ini │ │ ├── PerforceSourceControl.ini │ │ ├── PhysXVehicles.ini │ │ ├── PluginBrowser.ini │ │ ├── ProceduralMeshComponent.ini │ │ ├── ProfilerSettings.ini │ │ ├── ProxyLODPlugin.ini │ │ ├── RuntimePhysXCooking.ini │ │ ├── Scalability.ini │ │ ├── SourceControlSettings.ini │ │ ├── SpeedTreeImporter.ini │ │ ├── SteamVR.ini │ │ ├── SubversionSourceControl.ini │ │ ├── TcpMessaging.ini │ │ ├── TemplateDefs.ini │ │ ├── TranslationPickerSettings.ini │ │ ├── UObjectPlugin.ini │ │ ├── UdpMessaging.ini │ │ ├── UnitTest.ini │ │ ├── UnitTestStats.ini │ │ ├── VisualStudioCodeSourceCodeAccess.ini │ │ ├── VisualStudioSourceCodeAccess.ini │ │ ├── WindowsMoviePlayer.ini │ │ ├── WmfMedia.ini │ │ └── XCodeSourceCodeAccess.ini ├── ReimportCache │ └── 3688439234.bin └── Staging │ └── Reactive_Water.upluginmanifest ├── README.txt ├── RawFiles ├── BoxGradient.png ├── DebugDistance.png ├── Grass_VPainted.fbx ├── ImpactTexture.png ├── MarvelmasterMask.png ├── PlaneMask.png ├── RainDrop.png ├── RoundMask.png ├── SM_Grass.FBX ├── Splash.fbx ├── StandardMask.png ├── Star.fbx ├── WaterJetSound.wav ├── WaterPlaneForNormal_4V.fbx ├── WaterPlaneForTesselation_4kV.fbx ├── ZeldaMask.png ├── buoyancy_plane.png └── caustics_1024.jpg ├── Reactive_Water.png ├── Reactive_Water.uproject ├── Saved ├── AutoScreenshot.png ├── Config │ ├── ConsoleHistory.ini │ ├── CrashReportClient │ │ ├── UE4CC-Windows-0EED60F44DBDA09BF0BAC187BEAA910E │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-27AF23A04C7691DADE04B790E3624CF4 │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-30B3738B440B2F40BB543A94D0959FE0 │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-47C9FE97405150742CAC09BFD44D9A95 │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-4E31A5784496B0EF43FB38AE42FA9AAB │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-4F1A115342E525DB002C97B3A4D42070 │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-6749BF3B4A24EC4843240C84980E781F │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-6BCD08F143FEE7C417637FAF9361E4A8 │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-7A2283CF4EC65B8B47E8259E3BD8981E │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-7EF6D1824083DCF2B36095B86E85C73B │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-82CB4A8C447D0E557615A2AD8420F326 │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-84D774D04D3DD0395BE52698BDC18606 │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-87957280435A6082DD533BA3A4969564 │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-891EFA174E5209BF9633B3AC797312BA │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-89D942424535B6431E351782413674FB │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-8C6ECF244AED797F15CD03BB87CBAC96 │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-8C8294334F7052268A2A338C61144385 │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-8CA57C4E4AEBB4F1085B2091E744A841 │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-961C0A4B43D6C7E51468EBA6878ED86F │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-A23D140B44970ECBD6A1BCB93D6B3DB9 │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-A26B27264A515662CCD13EB65EED2F62 │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-A9263E974C2A5D450F69439D128F2B67 │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-B0B27B1F48AC2A3E84BA70BF8B1B2AD2 │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-BD5047814130C28012A1F68595C53762 │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-C0461F14453A447580173F8EFFABE7D5 │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-C78A8BCA42B005E632D4679B437AFBF4 │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-CE3A9BD344686C4FFFE57A93566AC77E │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-CFE2BCD54E1A73353033BB990B02E01E │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-D70047264EEA44EFD25176B9EE571B89 │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-DD86032F479E55CA1A3F678A2FA7F1C7 │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-DE611DC6438E2F6CC04EF288817E7B45 │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-E237BB3D4652B3169A6AD1A667660C7B │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-E3F7BEA74BC9F1C59414E0A2C2D36FFC │ │ │ └── CrashReportClient.ini │ │ ├── UE4CC-Windows-E64A74D04342E00538DA008612FDB879 │ │ │ └── CrashReportClient.ini │ │ └── UE4CC-Windows-F934FD84483FE55950E790B9D1AC58DB │ │ │ └── CrashReportClient.ini │ ├── Windows │ │ ├── Compat.ini │ │ ├── DeviceProfiles.ini │ │ ├── Editor.ini │ │ ├── EditorPerProjectUserSettings.ini │ │ ├── Engine.ini │ │ ├── Game.ini │ │ ├── GameUserSettings.ini │ │ ├── Hardware.ini │ │ ├── Input.ini │ │ ├── Lightmass.ini │ │ ├── OculusVR.ini │ │ ├── Paper2D.ini │ │ ├── PhysXVehicles.ini │ │ ├── ProfilerSettings.ini │ │ └── Scalability.ini │ └── WorldState │ │ ├── 1303193703.json │ │ ├── 1733713856.json │ │ ├── 1929619375.json │ │ ├── 3046101629.json │ │ ├── 3264693943.json │ │ ├── 3393405467.json │ │ ├── 366175216.json │ │ ├── 3989747207.json │ │ ├── 4090089142.json │ │ ├── 4170781786.json │ │ ├── 549335073.json │ │ ├── 601541867.json │ │ └── 978104464.json └── Thumb.png └── changelog_V3.01.txt /.gitignore: -------------------------------------------------------------------------------- 1 | # Visual Studio 2015 user specific files 2 | .vs/ 3 | 4 | # Visual Studio 2015 database file 5 | *.VC.db 6 | 7 | # Compiled Object files 8 | *.slo 9 | *.lo 10 | *.o 11 | *.obj 12 | 13 | # Precompiled Headers 14 | *.gch 15 | *.pch 16 | 17 | # Compiled Dynamic libraries 18 | *.so 19 | *.dylib 20 | *.dll 21 | 22 | # Fortran module files 23 | *.mod 24 | 25 | # Compiled Static libraries 26 | *.lai 27 | *.la 28 | *.a 29 | *.lib 30 | 31 | # Executables 32 | *.exe 33 | *.out 34 | *.app 35 | *.ipa 36 | 37 | # These project files can be generated by the engine 38 | *.xcodeproj 39 | *.xcworkspace 40 | *.sln 41 | *.suo 42 | *.opensdf 43 | *.sdf 44 | *.VC.db 45 | *.VC.opendb 46 | 47 | # Precompiled Assets 48 | SourceArt/**/*.png 49 | SourceArt/**/*.tga 50 | 51 | # Binary Files 52 | Binaries/* 53 | Plugins/*/Binaries/* 54 | 55 | # Builds 56 | Build/* 57 | 58 | # Whitelist PakBlacklist-.txt files 59 | !Build/*/ 60 | Build/*/** 61 | !Build/*/PakBlacklist*.txt 62 | 63 | # Don't ignore icon files in Build 64 | !Build/**/*.ico 65 | 66 | # Built data for maps 67 | *_BuiltData.uasset 68 | 69 | # Configuration files generated by the Editor 70 | Saved/* 71 | 72 | # Compiled source files for the engine to use 73 | Intermediate/* 74 | Plugins/*/Intermediate/* 75 | 76 | # Cache files for the editor to use 77 | DerivedDataCache/* 78 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # UE4_Dynamic_Water_Project V3 UE 4.20 2 | Unreal Engine 4 Dynamic Water Project by marvelmaster 3 | 4 | This version is intended to work with UE4.20 and upward. 5 | 6 | Loading up the project might seem to be stuck at 45%, but its just shader compiling...just wait a little more. 7 | 8 | V4 is in developement 9 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Config/DefaultEditor.ini: -------------------------------------------------------------------------------- 1 | [UnrealEd.SimpleMap] 2 | SimpleMapName=/Game/TP_ThirdPerson/Maps/ThirdPersonExampleMap 3 | 4 | [EditoronlyBP] 5 | bAllowClassAndBlueprintPinMatching=true 6 | bReplaceBlueprintWithClass= true 7 | bDontLoadBlueprintOutsideEditor= true 8 | bBlueprintIsNotBlueprintType= true 9 | 10 | 11 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Config/DefaultEditorPerProjectUserSettings.ini: -------------------------------------------------------------------------------- 1 | [ContentBrowser] 2 | ContentBrowserTab1.SelectedPaths=/Game/ThirdPersonBP -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Config/DefaultGame.ini: -------------------------------------------------------------------------------- 1 | [/Script/EngineSettings.GeneralProjectSettings] 2 | ProjectID=901A86114FA48ADAA9098E9B2D1C6C6D 3 | ProjectName=Third Person BP Game Template 4 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Config/DefaultInput.ini: -------------------------------------------------------------------------------- 1 | 2 | [/Script/Engine.InputSettings] 3 | -AxisConfig=(AxisKeyName="Gamepad_LeftX",AxisProperties=(DeadZone=0.25,Exponent=1.f,Sensitivity=1.f)) 4 | -AxisConfig=(AxisKeyName="Gamepad_LeftY",AxisProperties=(DeadZone=0.25,Exponent=1.f,Sensitivity=1.f)) 5 | -AxisConfig=(AxisKeyName="Gamepad_RightX",AxisProperties=(DeadZone=0.25,Exponent=1.f,Sensitivity=1.f)) 6 | -AxisConfig=(AxisKeyName="Gamepad_RightY",AxisProperties=(DeadZone=0.25,Exponent=1.f,Sensitivity=1.f)) 7 | -AxisConfig=(AxisKeyName="MouseX",AxisProperties=(DeadZone=0.f,Exponent=1.f,Sensitivity=0.07f)) 8 | -AxisConfig=(AxisKeyName="MouseY",AxisProperties=(DeadZone=0.f,Exponent=1.f,Sensitivity=0.07f)) 9 | +AxisConfig=(AxisKeyName="Gamepad_LeftX",AxisProperties=(DeadZone=0.250000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 10 | +AxisConfig=(AxisKeyName="Gamepad_LeftY",AxisProperties=(DeadZone=0.250000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 11 | +AxisConfig=(AxisKeyName="Gamepad_RightX",AxisProperties=(DeadZone=0.250000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 12 | +AxisConfig=(AxisKeyName="Gamepad_RightY",AxisProperties=(DeadZone=0.250000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 13 | +AxisConfig=(AxisKeyName="MouseX",AxisProperties=(DeadZone=0.000000,Sensitivity=0.070000,Exponent=1.000000,bInvert=False)) 14 | +AxisConfig=(AxisKeyName="MouseY",AxisProperties=(DeadZone=0.000000,Sensitivity=0.070000,Exponent=1.000000,bInvert=False)) 15 | +AxisConfig=(AxisKeyName="MouseWheelAxis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 16 | +AxisConfig=(AxisKeyName="Gamepad_LeftTriggerAxis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 17 | +AxisConfig=(AxisKeyName="Gamepad_RightTriggerAxis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 18 | +AxisConfig=(AxisKeyName="MotionController_Left_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 19 | +AxisConfig=(AxisKeyName="MotionController_Left_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 20 | +AxisConfig=(AxisKeyName="MotionController_Left_TriggerAxis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 21 | +AxisConfig=(AxisKeyName="MotionController_Left_Grip1Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 22 | +AxisConfig=(AxisKeyName="MotionController_Left_Grip2Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 23 | +AxisConfig=(AxisKeyName="MotionController_Right_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 24 | +AxisConfig=(AxisKeyName="MotionController_Right_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 25 | +AxisConfig=(AxisKeyName="MotionController_Right_TriggerAxis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 26 | +AxisConfig=(AxisKeyName="MotionController_Right_Grip1Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 27 | +AxisConfig=(AxisKeyName="MotionController_Right_Grip2Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 28 | +AxisConfig=(AxisKeyName="Gamepad_Special_Left_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 29 | +AxisConfig=(AxisKeyName="Gamepad_Special_Left_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) 30 | bAltEnterTogglesFullscreen=True 31 | bF11TogglesFullscreen=True 32 | bUseMouseForTouch=False 33 | bEnableMouseSmoothing=True 34 | bEnableFOVScaling=True 35 | FOVScale=0.011110 36 | DoubleClickTime=0.200000 37 | bCaptureMouseOnLaunch=True 38 | DefaultViewportMouseCaptureMode=CapturePermanently_IncludingInitialMouseDown 39 | bDefaultViewportMouseLock=True 40 | DefaultViewportMouseLockMode=LockOnCapture 41 | +ActionMappings=(ActionName="Jump",Key=SpaceBar,bShift=False,bCtrl=False,bAlt=False,bCmd=False) 42 | +ActionMappings=(ActionName="Jump",Key=Gamepad_FaceButton_Bottom,bShift=False,bCtrl=False,bAlt=False,bCmd=False) 43 | +ActionMappings=(ActionName="Jump",Key=MotionController_Left_Trigger,bShift=False,bCtrl=False,bAlt=False,bCmd=False) 44 | +ActionMappings=(ActionName="ResetVR",Key=R,bShift=False,bCtrl=False,bAlt=False,bCmd=False) 45 | +ActionMappings=(ActionName="ResetVR",Key=MotionController_Left_Grip1,bShift=False,bCtrl=False,bAlt=False,bCmd=False) 46 | +ActionMappings=(ActionName="Jump",Key=MotionController_Right_Trigger,bShift=False,bCtrl=False,bAlt=False,bCmd=False) 47 | +AxisMappings=(AxisName="MoveForward",Key=W,Scale=1.000000) 48 | +AxisMappings=(AxisName="MoveForward",Key=S,Scale=-1.000000) 49 | +AxisMappings=(AxisName="MoveForward",Key=Up,Scale=1.000000) 50 | +AxisMappings=(AxisName="MoveForward",Key=Down,Scale=-1.000000) 51 | +AxisMappings=(AxisName="MoveForward",Key=Gamepad_LeftY,Scale=1.000000) 52 | +AxisMappings=(AxisName="MoveRight",Key=A,Scale=-1.000000) 53 | +AxisMappings=(AxisName="MoveRight",Key=D,Scale=1.000000) 54 | +AxisMappings=(AxisName="MoveRight",Key=Gamepad_LeftX,Scale=1.000000) 55 | +AxisMappings=(AxisName="TurnRate",Key=Gamepad_RightX,Scale=1.000000) 56 | +AxisMappings=(AxisName="TurnRate",Key=Left,Scale=-1.000000) 57 | +AxisMappings=(AxisName="TurnRate",Key=Right,Scale=1.000000) 58 | +AxisMappings=(AxisName="Turn",Key=MouseX,Scale=1.000000) 59 | +AxisMappings=(AxisName="LookUpRate",Key=Gamepad_RightY,Scale=1.000000) 60 | +AxisMappings=(AxisName="LookUp",Key=MouseY,Scale=-1.000000) 61 | +AxisMappings=(AxisName="MoveForward",Key=MotionController_Left_Thumbstick_Y,Scale=-1.000000) 62 | +AxisMappings=(AxisName="MoveRight",Key=MotionController_Left_Thumbstick_X,Scale=1.000000) 63 | +AxisMappings=(AxisName="TurnRate",Key=MotionController_Right_Thumbstick_X,Scale=-1.000000) 64 | bAlwaysShowTouchInterface=False 65 | bShowConsoleOnFourFingerTap=True 66 | DefaultTouchInterface=/Engine/MobileResources/HUD/DefaultVirtualJoysticks.DefaultVirtualJoysticks 67 | ConsoleKey=None 68 | -ConsoleKeys=Tilde 69 | +ConsoleKeys=Enter 70 | +ConsoleKeys=Caret 71 | 72 | 73 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Blueprints/Ball_BP.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Blueprints/Ball_BP.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Blueprints/GPU_Particle_Rain_BP.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Blueprints/GPU_Particle_Rain_BP.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Blueprints/GooParticles_BP.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Blueprints/GooParticles_BP.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Blueprints/ImpactAtLocation_BP.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Blueprints/ImpactAtLocation_BP.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Blueprints/RainAtLocation_BP.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Blueprints/RainAtLocation_BP.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Blueprints/WaterBody_BP0.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Blueprints/WaterBody_BP0.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Blueprints/passive/GlobalUpdater_BP.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Blueprints/passive/GlobalUpdater_BP.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Blueprints/passive/WaterBodyFunctions.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Blueprints/passive/WaterBodyFunctions.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Grass/ForGrass_MPC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Grass/ForGrass_MPC.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Grass/Grass_VPainted.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Grass/Grass_VPainted.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Grass/Materials/SimpleGrassSimulation_mat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Grass/Materials/SimpleGrassSimulation_mat.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Grass/Materials/SimpleGrassSimulation_mat_Inst.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Grass/Materials/SimpleGrassSimulation_mat_Inst.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Grass/Textures/grass_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Grass/Textures/grass_D.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Grass/Textures/grass_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Grass/Textures/grass_N.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ImpactAtLocation_BP.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ImpactAtLocation_BP.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/IpactAtLocation_BP.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/IpactAtLocation_BP.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Maps/DynamicWaterFillingExample.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Maps/DynamicWaterFillingExample.umap -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Maps/ReactiveWater_Giant.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Maps/ReactiveWater_Giant.umap -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Maps/ReactiveWater_Showcase.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Maps/ReactiveWater_Showcase.umap -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/BasicShapeMaterial_TwoSided.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/BasicShapeMaterial_TwoSided.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/CubeMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/CubeMaterial.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/Gold_mad.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/Gold_mad.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/UnderWaterShake_PP_mat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/UnderWaterShake_PP_mat.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/UnderWaterShake_PP_mat_Inst.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/UnderWaterShake_PP_mat_Inst.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/White_TwoSided_mat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/White_TwoSided_mat.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/caustics_mat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/caustics_mat.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/caustics_mat_Inst.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/caustics_mat_Inst.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/cobble_d_Mat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/cobble_d_Mat.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/cobble_mat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/cobble_mat.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/debug_mat_outer.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/debug_mat_outer.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/grey_mat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/grey_mat.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/invisible_mat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/invisible_mat.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/sand_01_Mat_Inst.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/sand_01_Mat_Inst.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/sand_mat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/sand_mat.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/sand_mat_Inst.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/sand_mat_Inst.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/sand_mat_Inst_giant.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/sand_mat_Inst_giant.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/test.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/BasicMaterials/test.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ComputeMaterials_and_RenderTargets/ComputeNormal.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ComputeMaterials_and_RenderTargets/ComputeNormal.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ComputeMaterials_and_RenderTargets/DefaultHeightfield.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ComputeMaterials_and_RenderTargets/DefaultHeightfield.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ComputeMaterials_and_RenderTargets/DefaultHeightfieldNormal.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ComputeMaterials_and_RenderTargets/DefaultHeightfieldNormal.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ComputeMaterials_and_RenderTargets/DepthCapture.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ComputeMaterials_and_RenderTargets/DepthCapture.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ComputeMaterials_and_RenderTargets/ForceSplat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ComputeMaterials_and_RenderTargets/ForceSplat.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ComputeMaterials_and_RenderTargets/Height0.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ComputeMaterials_and_RenderTargets/Height0.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ComputeMaterials_and_RenderTargets/Height1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ComputeMaterials_and_RenderTargets/Height1.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ComputeMaterials_and_RenderTargets/Height2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ComputeMaterials_and_RenderTargets/Height2.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ComputeMaterials_and_RenderTargets/HeightSim.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ComputeMaterials_and_RenderTargets/HeightSim.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ComputeMaterials_and_RenderTargets/Raint_Mat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ComputeMaterials_and_RenderTargets/Raint_Mat.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ComputeMaterials_and_RenderTargets/RenderTargetForGrassBend.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ComputeMaterials_and_RenderTargets/RenderTargetForGrassBend.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ComputeMaterials_and_RenderTargets/SC_Debug_RT.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ComputeMaterials_and_RenderTargets/SC_Debug_RT.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/DebugMaterials/DebugNoDepth.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/DebugMaterials/DebugNoDepth.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/DebugMaterials/PlaneCollider_mat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/DebugMaterials/PlaneCollider_mat.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/DebugMaterials/RainIndicator_mat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/DebugMaterials/RainIndicator_mat.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/DebugMaterials/buoyancy_plane_mat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/DebugMaterials/buoyancy_plane_mat.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/DebugMaterials/debug_mat_red.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/DebugMaterials/debug_mat_red.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/MaterialFunctions+Collections/GetUVs.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/MaterialFunctions+Collections/GetUVs.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/MaterialFunctions+Collections/MaskUV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/MaterialFunctions+Collections/MaskUV.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/MaterialFunctions+Collections/MaskUV_Normals.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/MaterialFunctions+Collections/MaskUV_Normals.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/MaterialFunctions+Collections/Motion_4WayChaos.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/MaterialFunctions+Collections/Motion_4WayChaos.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ParticleMaterials/Rainfall_mat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ParticleMaterials/Rainfall_mat.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ParticleMaterials/Splash_mat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ParticleMaterials/Splash_mat.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ParticleMaterials/water_emitter_mat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ParticleMaterials/water_emitter_mat.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ParticleMaterials/water_emitter_mat_Inst.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/ParticleMaterials/water_emitter_mat_Inst.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/WaterMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/WaterMaterial.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/WaterMaterial_Inst_brown.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/WaterMaterial_Inst_brown.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/WaterMaterial_Inst_clear.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/WaterMaterial_Inst_clear.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/WaterMaterial_Inst_green.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/WaterMaterial_Inst_green.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/WaterMaterial_Inst_milk.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/WaterMaterial_Inst_milk.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/WaterMaterial_Inst_red.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/WaterMaterial_Inst_red.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/WaterMaterial_Inst_water.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/WaterMaterial_Inst_water.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/cobble_d_Mat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/cobble_d_Mat.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/sand_01_Mat_Inst.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Materials/sand_01_Mat_Inst.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Meshes/Cube.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Meshes/Cube.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Meshes/Cylinder.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Meshes/Cylinder.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Meshes/Plane.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Meshes/Plane.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Meshes/Sphere.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Meshes/Sphere.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Meshes/Splash.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Meshes/Splash.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Meshes/Splash2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Meshes/Splash2.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Meshes/Star.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Meshes/Star.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Meshes/WaterPlaneForDisplacement_260kV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Meshes/WaterPlaneForDisplacement_260kV.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Meshes/WaterPlaneForNormal_4V.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Meshes/WaterPlaneForNormal_4V.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Meshes/WaterPlaneForTesselation_4kV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Meshes/WaterPlaneForTesselation_4kV.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Particles/399157__strathamer__rainy-day.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Particles/399157__strathamer__rainy-day.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Particles/Bubbles_PS.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Particles/Bubbles_PS.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Particles/Rain_PS.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Particles/Rain_PS.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Particles/Rainfall_ps.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Particles/Rainfall_ps.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Particles/Splash_PS.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Particles/Splash_PS.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Particles/WaterJetSound.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Particles/WaterJetSound.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Particles/WaterJetStatic_PS.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Particles/WaterJetStatic_PS.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Particles/WaterJet_PS.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Particles/WaterJet_PS.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/DebugTextures/DebugDistance.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/DebugTextures/DebugDistance.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/DebugTextures/PlaneColliderTexture.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/DebugTextures/PlaneColliderTexture.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/DebugTextures/buoyancy_plane.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/DebugTextures/buoyancy_plane.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/ImpactTexture.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/ImpactTexture.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/RainDrop.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/RainDrop.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/ShapeMasks/MarvelmasterMask.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/ShapeMasks/MarvelmasterMask.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/ShapeMasks/RoundMask.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/ShapeMasks/RoundMask.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/ShapeMasks/StandardMask.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/ShapeMasks/StandardMask.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/ShapeMasks/ZeldaMask.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/ShapeMasks/ZeldaMask.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/caustics_1024.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/caustics_1024.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/cobble_d.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/cobble_d.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/cobble_n.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/cobble_n.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/sand_01_Base_Color.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/sand_01_Base_Color.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/sand_01_Height.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/sand_01_Height.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/sand_01_Normal.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/sand_01_Normal.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/sand_01_Roughness.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/sand_01_Roughness.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/sand_01_wet_Roughness.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/sand_01_wet_Roughness.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/water_normal.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/Textures/water_normal.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Blueprints/Ball.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Blueprints/Ball.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Blueprints/ThirdPersonGameMode.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Blueprints/ThirdPersonGameMode.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Blueprints/WaterTPCharacter.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Blueprints/WaterTPCharacter.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Blueprints/WaterTPGameMode.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Blueprints/WaterTPGameMode.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Animations/ThirdPersonIdle.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Animations/ThirdPersonIdle.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Animations/ThirdPersonJump_Loop.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Animations/ThirdPersonJump_Loop.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Animations/ThirdPersonJump_Start.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Animations/ThirdPersonJump_Start.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Animations/ThirdPersonRun.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Animations/ThirdPersonRun.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Animations/ThirdPersonWalk.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Animations/ThirdPersonWalk.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Animations/ThirdPersonWalk1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Animations/ThirdPersonWalk1.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Animations/ThirdPerson_Jump.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Animations/ThirdPerson_Jump.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Animations/Water_TP_AnimBP.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Animations/Water_TP_AnimBP.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Animations/Water_TP_IdleRun_2D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Animations/Water_TP_IdleRun_2D.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/MOB1_Jog_F_IPC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/MOB1_Jog_F_IPC.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/MOB1_Run_F_IPC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/MOB1_Run_F_IPC.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/MOB1_Stand_Relaxed_Death_B_IPC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/MOB1_Stand_Relaxed_Death_B_IPC.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/MOB1_Stand_Relaxed_Death_B_IPC_Montage.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/MOB1_Stand_Relaxed_Death_B_IPC_Montage.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/MOB1_Walk_F_IPC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/MOB1_Walk_F_IPC.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Materials/M_UE4Man_Body.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Materials/M_UE4Man_Body.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Materials/M_UE4Man_ChestLogo.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Materials/M_UE4Man_ChestLogo.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Materials/MaterialLayers/ML_GlossyBlack_Latex_UE4.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Materials/MaterialLayers/ML_GlossyBlack_Latex_UE4.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Materials/MaterialLayers/ML_Plastic_Shiny_Beige.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Materials/MaterialLayers/ML_Plastic_Shiny_Beige.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Materials/MaterialLayers/ML_Plastic_Shiny_Beige_LOGO.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Materials/MaterialLayers/ML_Plastic_Shiny_Beige_LOGO.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Materials/MaterialLayers/ML_SoftMetal_UE4.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Materials/MaterialLayers/ML_SoftMetal_UE4.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Materials/MaterialLayers/T_ML_Aluminum01.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Materials/MaterialLayers/T_ML_Aluminum01.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Materials/MaterialLayers/T_ML_Aluminum01_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Materials/MaterialLayers/T_ML_Aluminum01_N.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Materials/MaterialLayers/T_ML_Rubber_Blue_01_D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Materials/MaterialLayers/T_ML_Rubber_Blue_01_D.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Materials/MaterialLayers/T_ML_Rubber_Blue_01_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Materials/MaterialLayers/T_ML_Rubber_Blue_01_N.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Mesh/Water_SK_Mannequin.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Mesh/Water_SK_Mannequin.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Mesh/Water_SK_Mannequin_PhysicsAsset.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Mesh/Water_SK_Mannequin_PhysicsAsset.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Mesh/Water_UE4_Mannequin_Skeleton.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Mesh/Water_UE4_Mannequin_Skeleton.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Textures/UE4Man_Logo_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Textures/UE4Man_Logo_N.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Textures/UE4_LOGO_CARD.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Textures/UE4_LOGO_CARD.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Textures/UE4_Mannequin_MAT_MASKA.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Textures/UE4_Mannequin_MAT_MASKA.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Textures/UE4_Mannequin__normals.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/ThirdPersonBP/Mannequin/Character/Textures/UE4_Mannequin__normals.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/WaterBody_BP0.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/WaterBody_BP0.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/WaterMaster_BP.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/_Marvelmaster_infinite_reactive_water_/WaterMaster_BP.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Content/cobble_d_Mat.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Content/cobble_d_Mat.uasset -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/0cefa8ba.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/0cefa8ba.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/0e234951.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/0e234951.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/0ea4f87b.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/0ea4f87b.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/0f295fb2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/0f295fb2.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/1f683343.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/1f683343.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/2657c409.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/2657c409.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/2f5244c7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/2f5244c7.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/311563bb.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/311563bb.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/416abec1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/416abec1.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/4c40c0d2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/4c40c0d2.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/50a675f9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/50a675f9.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/52ed2538.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/52ed2538.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/54147d67.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/54147d67.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/598e6f35.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/598e6f35.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/6ee03440.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/6ee03440.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/7855498b.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/7855498b.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/7fc3b60a.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/7fc3b60a.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/84125109.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/84125109.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/866581fd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/866581fd.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/8c0e1344.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/8c0e1344.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/8eacc34e.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/8eacc34e.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/9456d10d.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/9456d10d.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/97eb97bd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/97eb97bd.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/9ab3dde9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/9ab3dde9.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/ab41d4d5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/ab41d4d5.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/aed78e8e.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/aed78e8e.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/b0597a29.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/b0597a29.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/c90e3f55.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/c90e3f55.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/c9e91a3f.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/c9e91a3f.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/d091bc60.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/d091bc60.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/d20c9ec6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/d20c9ec6.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/d8670c7f.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/d8670c7f.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/dd80cf3a.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/dd80cf3a.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/e6669a6b.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/e6669a6b.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/e912cf9e.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/e912cf9e.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/f0d5030c.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/AssetRegistryCache/f0d5030c.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/CachedAssetRegistry.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/CachedAssetRegistry.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/AISupport.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/AISupport.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/ActorSequence.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/ActorSequence.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/AlembicImporter.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/AlembicImporter.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/AndroidDeviceProfileSelector.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/AndroidDeviceProfileSelector.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/AndroidMedia.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/AndroidMedia.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/AndroidMoviePlayer.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/AndroidMoviePlayer.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/AndroidPermission.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/AndroidPermission.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/AppleARKit.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/AppleARKit.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/AppleImageUtils.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/AppleImageUtils.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/AppleMoviePlayer.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/AppleMoviePlayer.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/AppleVision.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/AppleVision.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/ArchVisCharacter.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/ArchVisCharacter.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/AssetManagerEditor.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/AssetManagerEditor.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/AudioCapture.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/AudioCapture.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/AvfMedia.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/AvfMedia.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/BackChannel.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/BackChannel.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/CLionSourceCodeAccess.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/CLionSourceCodeAccess.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/CableComponent.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/CableComponent.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/CharacterAI.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/CharacterAI.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/CodeLiteSourceCodeAccess.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/CodeLiteSourceCodeAccess.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/Crypto.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/Crypto.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/CryptoKeys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/CryptoKeys.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/CustomMeshComponent.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/CustomMeshComponent.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/DataValidation.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/DataValidation.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/DatasmithContent.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/DatasmithContent.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/EditableMesh.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/EditableMesh.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/EditorKeyBindings.ini: -------------------------------------------------------------------------------- 1 | [/Script/UnrealEd.UnrealEdKeyBindings] 2 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="J",CommandName="Matinee_PlayReverse") 3 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="K",CommandName="Matinee_Stop") 4 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="L",CommandName="Matinee_PlayForward") 5 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="SpaceBar",CommandName="Matinee_TogglePlayPause") 6 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="Delete",CommandName="Matinee_DeleteSelection") 7 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="Add",CommandName="Matinee_ZoomIn") 8 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="Subtract",CommandName="Matinee_ZoomOut") 9 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="Equals",CommandName="Matinee_ZoomInAlt") 10 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="Underscore",CommandName="Matinee_ZoomOutAlt") 11 | KeyBindings=(bCtrlDown=True,bAltDown=False,bShiftDown=False,Key="Z",CommandName="Matinee_Undo") 12 | KeyBindings=(bCtrlDown=True,bAltDown=False,bShiftDown=False,Key="Y",CommandName="Matinee_Redo") 13 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="I",CommandName="Matinee_MarkInSection") 14 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="O",CommandName="Matinee_MarkOutSection") 15 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="Right",CommandName="Matinee_IncrementPosition") 16 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="Left",CommandName="Matinee_DecrementPosition") 17 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=True,Key="Right",CommandName="Matinee_MoveToNextKey") 18 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=True,Key="Left",CommandName="Matinee_MoveToPrevKey") 19 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="R",CommandName="Matinee_SplitAnimKey") 20 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="S",CommandName="Matinee_ToggleSnap") 21 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="Up",CommandName="Matinee_MoveActiveUp") 22 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="Down",CommandName="Matinee_MoveActiveDown") 23 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="Enter",CommandName="Matinee_AddKey") 24 | KeyBindings=(bCtrlDown=True,bAltDown=False,bShiftDown=False,Key="W",CommandName="Matinee_DuplicateSelectedKeys") 25 | KeyBindings=(bCtrlDown=True,bAltDown=False,bShiftDown=False,Key="I",CommandName="Matinee_CropAnimationBeginning") 26 | KeyBindings=(bCtrlDown=True,bAltDown=False,bShiftDown=False,Key="O",CommandName="Matinee_CropAnimationEnd") 27 | KeyBindings=(bCtrlDown=True,bAltDown=False,bShiftDown=False,Key="C",CommandName="Matinee_Copy") 28 | KeyBindings=(bCtrlDown=True,bAltDown=False,bShiftDown=False,Key="X",CommandName="Matinee_Cut") 29 | KeyBindings=(bCtrlDown=True,bAltDown=False,bShiftDown=False,Key="V",CommandName="Matinee_Paste") 30 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="A",CommandName="Matinee_ViewFitSequence") 31 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="F",CommandName="Matinee_ViewFitToSelected") 32 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=True,Key="A",CommandName="Matinee_ViewFitLoop") 33 | KeyBindings=(bCtrlDown=True,bAltDown=False,bShiftDown=False,Key="A",CommandName="Matinee_ViewFitLoopSequence") 34 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="E",CommandName="Matinee_ViewEndOfTrack") 35 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="one",CommandName="Matinee_ChangeKeyInterpModeAUTO") 36 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="two",CommandName="Matinee_ChangeKeyInterpModeUSER") 37 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="three",CommandName="Matinee_ChangeKeyInterpModeBREAK") 38 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="four",CommandName="Matinee_ChangeKeyInterpModeLINEAR") 39 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="five",CommandName="Matinee_ChangeKeyInterpModeCONSTANT") 40 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="one",CommandName="CurveEditor_ChangeInterpModeAUTO") 41 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="two",CommandName="CurveEditor_ChangeInterpModeUSER") 42 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="three",CommandName="CurveEditor_ChangeInterpModeBREAK") 43 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="four",CommandName="CurveEditor_ChangeInterpModeLINEAR") 44 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="five",CommandName="CurveEditor_ChangeInterpModeCONSTANT") 45 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="A",CommandName="CurveEditor_FitViewToAll") 46 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=True,Key="A",CommandName="CurveEditor_FitViewHorizontally") 47 | KeyBindings=(bCtrlDown=True,bAltDown=False,bShiftDown=False,Key="A",CommandName="CurveEditor_FitViewVertically") 48 | KeyBindings=(bCtrlDown=False,bAltDown=False,bShiftDown=False,Key="F",CommandName="CurveEditor_FitViewToSelected") 49 | 50 | [UserDefinedGestures] 51 | Content=~OpenBracket~\r\n~CloseBracket~ 52 | 53 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/EditorLayout.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/EditorLayout.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/EditorSettings.ini: -------------------------------------------------------------------------------- 1 | [Internationalization] 2 | ShouldUseLocalizedNumericInput=True 3 | ShouldUseLocalizedPropertyNames=True 4 | ShouldUseLocalizedNodeAndPinNames=True 5 | 6 | [/Script/UnrealEd.EditorSettings] 7 | bCopyStarterContentPreference=true 8 | 9 | [/Script/NewsFeed.NewsFeedSettings] 10 | CdnSourceUrl="http://cdn.unrealengine.com/newsfeed/[[Culture]]/index.json" 11 | LocalSourcePath=Editor/NewsFeed/[[Culture]]/ 12 | Source=NEWSFEED_Cdn 13 | MaxItemsToShow=10 14 | ShowOnlyUnreadItems=True 15 | 16 | [/Script/UnrealEd.ContentBrowserSettings] 17 | NumObjectsToLoadBeforeWarning=20 18 | RealTimeThumbnails=True 19 | DisplayFolders=True 20 | DisplayEmptyFolders=True 21 | DisplayEngineFolder=False 22 | DisplayDevelopersFolder=False 23 | DisplayCollections=False 24 | DisplayCppFolders=True 25 | DisplayPluginFolder=True 26 | NumObjectsInRecentList=20 27 | IncludeClassNames=True 28 | IncludeAssetPaths=False 29 | IncludeCollectionNames=True 30 | 31 | [/Script/IntroTutorials.EditorTutorialSettings] 32 | Categories=(Identifier="Basics",Title=NSLOCTEXT("TutorialCategories","BasicsTitle","Basics"),Description=NSLOCTEXT("TutorialCategories","BasicsDescription","Getting started with Unreal Engine 4."),Icon="PlayWorld.RepeatLastPlay",Texture=None,SortOrder=100) 33 | Categories=(Identifier="Blueprints",Title=NSLOCTEXT("TutorialCategories","BlueprintsTitle","Blueprints"),Description=NSLOCTEXT("TutorialCategories","BlueprintsDescription","Tutorials covering the creation and usage of Blueprints."),Icon="FullBlueprintEditor.EditGlobalOptions",Texture=/Engine/Tutorial/BlueprintTutorials/TutorialAssets/Blueprint_64x.Blueprint_64x,SortOrder=200) 34 | Categories=(Identifier="Editors",Title=NSLOCTEXT("TutorialCategories","EditorsTitle","Editors"),Description=NSLOCTEXT("TutorialCategories","EditorsDescription","Tutorials covering the various sub editors of Unreal Engine 4."),Icon=,Texture=/Engine/Tutorial/SubEditors/TutorialAssets/icon_Editor_Preferences_General_40x.icon_Editor_Preferences_General_40x,SortOrder=225) 35 | Categories=(Identifier="Code",Title=NSLOCTEXT("TutorialCategories","CodeTitle","Code"),Description=NSLOCTEXT("TutorialCategories","CodeDescription","Write C++ code for use in Unreal Engine 4."),Icon="PlayWorld.RepeatLastPlay",Texture=None,SortOrder=250) 36 | Categories=(Identifier="Paper2D",Title=NSLOCTEXT("TutorialCategories","Paper2DTitle","Paper2D"),Description=NSLOCTEXT("TutorialCategories","Paper2DDescription","Tutorials covering the usage of the Unreal Engine 4 2D game tool: Paper2D."),Icon="ClassThumbnail.PaperSprite",Texture=/Engine/Tutorial/Paper2D/TutorialAssets/Paper2DSprite_TutorialIcon.Paper2DSprite_TutorialIcon,SortOrder=500) 37 | Categories=(Identifier="Animation",Title=NSLOCTEXT("TutorialCategories","AnimationTitle","Animation"),Description=NSLOCTEXT("TutorialCategories","AnimationDescription","Tutorials covering the animation system in Unreal Engine 4."),Icon=,Texture=/Engine/Tutorial/SubEditors/TutorialAssets/icon_ShowSkeletalMeshes_40x.icon_ShowSkeletalMeshes_40x,SortOrder=600) 38 | Categories=(Identifier="Landscape",Title=NSLOCTEXT("TutorialCategories","LandscapeTitle","Landscape"),Description=NSLOCTEXT("TutorialCategories","LandscapeDescription","Tutorials covering the Unreal Editor 4 terrain editor: Landscape."),Icon="LevelEditor.LandscapeMode",Texture=/Engine/Tutorial/Landscape/TutorialAssets/Landscape.Landscape,SortOrder=700) 39 | Categories=(Identifier="Foliage",Title=NSLOCTEXT("TutorialCategories","FoliageTitle","Foliage"),Description=NSLOCTEXT("TutorialCategories","FoliageDescription","Tutorials covering the Unreal Engine 4 Foliage tool."),Icon="LevelEditor.FoliageMode",Texture=/Engine/Tutorial/Foliage/TutorialAssets/Foliage.Foliage,SortOrder=800) 40 | Categories=(Identifier="Mobile",Title=NSLOCTEXT("TutorialCategories","MobileTitle","Mobile"),Description=NSLOCTEXT("TutorialCategories","MobileDescription","Mobile Tutorials."),Icon="MaterialEditor.ToggleMobileStats",Texture=None,SortOrder=900) 41 | StartupTutorial=/Engine/Tutorial/Basics/LevelEditorAttract.LevelEditorAttract_C 42 | TutorialContexts=(Context="StaticMeshEditor",BrowserFilter=,AttractTutorial=None,LaunchTutorial=/Engine/Tutorial/SubEditors/StaticMeshEditorTutorial.StaticMeshEditorTutorial_C) 43 | TutorialContexts=(Context="LevelEditor",BrowserFilter=,AttractTutorial=None,LaunchTutorial=/Engine/Tutorial/Basics/LevelEditorOverview.LevelEditorOverview_C) 44 | TutorialContexts=(Context="BlueprintEditor",BrowserFilter=,AttractTutorial=None,LaunchTutorial=/Engine/Tutorial/BlueprintTutorials/BlueprintEditorTutorial.BlueprintEditorTutorial_C) 45 | TutorialContexts=(Context="BlueprintEditor.MacroLibrary",BrowserFilter=,AttractTutorial=None,LaunchTutorial=/Engine/Tutorial/BlueprintTutorials/BlueprintMacroLibrariesEditorOverview.BlueprintMacroLibrariesEditorOverview_C) 46 | TutorialContexts=(Context="BlueprintEditor.Interface",BrowserFilter=,AttractTutorial=None,LaunchTutorial=/Engine/Tutorial/BlueprintTutorials/BlueprintInterfacesEditorOverview.BlueprintInterfacesEditorOverview_C) 47 | TutorialContexts=(Context="BlueprintEditor.LevelScript",BrowserFilter=,AttractTutorial=None,LaunchTutorial=/Engine/Tutorial/BlueprintTutorials/LevelBlueprintEditorOverview.LevelBlueprintEditorOverview_C) 48 | TutorialContexts=(Context="MaterialEditor",BrowserFilter=,AttractTutorial=None,LaunchTutorial=/Engine/Tutorial/SubEditors/MaterialEditorTutorial.MaterialEditorTutorial_C) 49 | TutorialContexts=(Context="Cascade",BrowserFilter=,AttractTutorial=None,LaunchTutorial=/Engine/Tutorial/SubEditors/ParticleSystemEditorTutorial.ParticleSystemEditorTutorial_C) 50 | TutorialContexts=(Context="Persona",BrowserFilter=,AttractTutorial=None,LaunchTutorial=/Engine/Tutorial/SubEditors/PersonaAnimEditorWalkThrough.PersonaAnimEditorWalkthrough_C) 51 | TutorialContexts=(Context="SpriteEditor",BrowserFilter=,AttractTutorial=None,LaunchTutorial=/Engine/Tutorial/Paper2D/SpriteEditorTutorial.SpriteEditorTutorial_C) 52 | TutorialContexts=(Context="FlipbookEditor",BrowserFilter=,AttractTutorial=None,LaunchTutorial=/Engine/Tutorial/Paper2D/FlipbookEditorTutorial.FlipbookEditorTutorial_C) 53 | TutorialContexts=(Context="LandscapeMode",BrowserFilter=,AttractTutorial=None,LaunchTutorial=/Engine/Tutorial/Landscape/Landscape_Manage_Mode.Landscape_Manage_Mode_C) 54 | TutorialContexts=(Context="FoliageMode",BrowserFilter=,AttractTutorial=None,LaunchTutorial=/Engine/Tutorial/Foliage/Foliage_Intro_Tutorial.Foliage_Intro_Tutorial_C) 55 | 56 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/Encryption.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/Encryption.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/ExampleDeviceProfileSelector.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/ExampleDeviceProfileSelector.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/FacialAnimation.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/FacialAnimation.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/Game.ini: -------------------------------------------------------------------------------- 1 | [Internationalization] 2 | LocalizationPaths=%GAMEDIR%Content/Localization/Game 3 | 4 | [DefaultPlayer] 5 | Name=Player 6 | 7 | [/Script/Engine.GameNetworkManager] 8 | TotalNetBandwidth=32000 9 | MaxDynamicBandwidth=7000 10 | MinDynamicBandwidth=4000 11 | MoveRepSize=42.0f 12 | MAXPOSITIONERRORSQUARED=3.0f 13 | MAXNEARZEROVELOCITYSQUARED=9.0f 14 | CLIENTADJUSTUPDATECOST=180.0f 15 | MAXCLIENTUPDATEINTERVAL=0.25f 16 | MaxMoveDeltaTime=0.125f 17 | ClientNetSendMoveDeltaTime=0.0166 18 | ClientNetSendMoveDeltaTimeThrottled=0.0222 19 | ClientNetSendMoveDeltaTimeStationary=0.0166 20 | ClientNetSendMoveThrottleAtNetSpeed=10000 21 | ClientNetSendMoveThrottleOverPlayerCount=10 22 | ClientAuthorativePosition=false 23 | ClientErrorUpdateRateLimit=0.0f 24 | bMovementTimeDiscrepancyDetection=false 25 | bMovementTimeDiscrepancyResolution=false 26 | MovementTimeDiscrepancyMaxTimeMargin=0.25f 27 | MovementTimeDiscrepancyMinTimeMargin=-0.25f 28 | MovementTimeDiscrepancyResolutionRate=1.0f 29 | MovementTimeDiscrepancyDriftAllowance=0.0f 30 | bMovementTimeDiscrepancyForceCorrectionsDuringResolution=false 31 | bUseDistanceBasedRelevancy=true 32 | 33 | [/Script/Party.Party] 34 | DefaultMaxPartySize=5 35 | 36 | [/Script/Lobby.LobbyBeaconState] 37 | WaitForPlayersTimeRemaining=20.0 38 | 39 | [/Script/Engine.GameSession] 40 | MaxPlayers=16 41 | MaxSpectators=2 42 | MaxSplitscreensPerConnection=4 43 | bRequiresPushToTalk=true 44 | 45 | [/Script/EngineSettings.GeneralProjectSettings] 46 | CompanyName= 47 | CompanyDistinguishedName= 48 | CopyrightNotice=Fill out your copyright notice in the Description page of Project Settings. 49 | Description= 50 | LicensingTerms= 51 | PrivacyPolicy= 52 | ProjectName=Third Person BP Game Template 53 | ProjectVersion=1.0.0.0 54 | Homepage= 55 | SupportContact= 56 | ProjectID=901A86114FA48ADAA9098E9B2D1C6C6D 57 | 58 | [/Script/UnrealEd.ProjectPackagingSettings] 59 | BuildConfiguration=PPBC_Development 60 | FullRebuild=False 61 | UsePakFile=True 62 | bGenerateChunks=False 63 | bChunkHardReferencesOnly=False 64 | IncludePrerequisites=True 65 | IncludeCrashReporter=False 66 | InternationalizationPreset=English 67 | CulturesToStage=en 68 | DefaultCulture=en 69 | bSkipEditorContent=false 70 | bSharedMaterialNativeLibraries=False 71 | bShareMaterialShaderCode=False 72 | bSkipMovies=False 73 | EarlyDownloaderPakFileFiles=...\Content\Internationalization\...\*.icu 74 | EarlyDownloaderPakFileFiles=...\Content\Internationalization\...\*.brk 75 | EarlyDownloaderPakFileFiles=...\Content\Internationalization\...\*.res 76 | EarlyDownloaderPakFileFiles=...\Content\Internationalization\...\*.nrm 77 | EarlyDownloaderPakFileFiles=...\Content\Internationalization\...\*.cfu 78 | EarlyDownloaderPakFileFiles=...\Content\Localization\...\*.* 79 | EarlyDownloaderPakFileFiles=...\Content\Localization\*.* 80 | EarlyDownloaderPakFileFiles=...\Content\Certificates\...\*.* 81 | EarlyDownloaderPakFileFiles=...\Content\Certificates\*.* 82 | EarlyDownloaderPakFileFiles=-...\Content\Localization\Game\...\*.* 83 | EarlyDownloaderPakFileFiles=-...\Content\Localization\Game\*.* 84 | EarlyDownloaderPakFileFiles=...\Config\...\*.ini 85 | EarlyDownloaderPakFileFiles=...\Config\*.ini 86 | EarlyDownloaderPakFileFiles=...\Engine\GlobalShaderCache*.bin 87 | EarlyDownloaderPakFileFiles=...\Content\ShaderArchive-Global-*.ushaderbytecode 88 | EarlyDownloaderPakFileFiles=...\Content\Slate\*.* 89 | EarlyDownloaderPakFileFiles=...\Content\Slate\...\*.* 90 | EarlyDownloaderPakFileFiles=...\*.upluginmanifest 91 | EarlyDownloaderPakFileFiles=...\*.uproject 92 | EarlyDownloaderPakFileFiles=...\global_sf*.metalmap 93 | 94 | [/Script/Engine.HUD] 95 | DebugDisplay=AI 96 | 97 | [/Script/Engine.PlayerController] 98 | InputYawScale=2.5 99 | InputPitchScale=-1.75 100 | InputRollScale=1.0 101 | ForceFeedbackScale=1.0 102 | 103 | [/Script/Engine.DebugCameraController] 104 | bShowSelectedInfo=true 105 | 106 | [/Script/Engine.WorldSettings] 107 | ChanceOfPhysicsChunkOverride=1.0 108 | bEnableChanceOfPhysicsChunkOverride=false 109 | DefaultAmbientZoneSettings=(bIsWorldSettings=true) 110 | EnabledPlugins=ExampleDeviceProfileSelector 111 | MinUndilatedFrameTime=0.0005 ; 2000 fps 112 | MaxUndilatedFrameTime=0.4 ; 2.5 fps 113 | MinGlobalTimeDilation=0.0001 114 | MaxGlobalTimeDilation=20.0 115 | 116 | [/Script/AIModule.AIPerceptionComponent] 117 | HearingRange=768 118 | SightRadius=3000 119 | LoseSightRadius=3500 120 | LoSHearingRange=1500 121 | PeripheralVisionAngle=90 122 | 123 | [/Script/AIModule.AISense_Hearing] 124 | SpeedOfSoundSq=0 125 | 126 | [/Script/AIModule.AISenseConfig_Hearing] 127 | Implementation=Class'/Script/AIModule.AISense_Hearing' 128 | HearingRange=768 129 | LoSHearingRange=1500 130 | DetectionByAffiliation=(bDetectEnemies=true) 131 | 132 | [/Script/AIModule.AISenseConfig_Sight] 133 | Implementation=Class'/Script/AIModule.AISense_Sight' 134 | SightRadius=3000 135 | LoseSightRadius=3500 136 | PeripheralVisionAngleDegrees=90 137 | DetectionByAffiliation=(bDetectEnemies=true) 138 | AutoSuccessRangeFromLastSeenLocation=-1.f 139 | 140 | [/Script/AIModule.AISenseConfig_Damage] 141 | Implementation=Class'/Script/AIModule.AISense_Damage' 142 | 143 | [/Script/AIModule.EnvQueryManager] 144 | MaxAllowedTestingTime=0.01 145 | bTestQueriesUsingBreadth=true 146 | QueryCountWarningThreshold=0 147 | QueryCountWarningInterval=30.0 148 | 149 | [/Script/Engine.AssetManagerSettings] 150 | PrimaryAssetTypesToScan=(PrimaryAssetType="Map",AssetBaseClass=/Script/Engine.World,bHasBlueprintClasses=False,bIsEditorOnly=True,Directories=((Path="/Game/Maps"))) 151 | PrimaryAssetTypesToScan=(PrimaryAssetType="PrimaryAssetLabel",AssetBaseClass=/Script/Engine.PrimaryAssetLabel,bHasBlueprintClasses=False,bIsEditorOnly=True,Directories=((Path="/Game"))) 152 | 153 | [Staging] 154 | RemapDirectories=(From="Engine/Plugins/Lumin", To="Engine/Plugins/MagicLeap") 155 | 156 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/GameUserSettings.ini: -------------------------------------------------------------------------------- 1 | [Internationalization] 2 | ShouldUseLocalizedNumericInput=True 3 | 4 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/GameplayTags.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/GameplayTags.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/GameplayTagsEditor.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/GameplayTagsEditor.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/GameplayTagsList.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/GameplayTagsList.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/GeometryCache.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/GeometryCache.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/GitSourceControl.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/GitSourceControl.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/GoogleCloudMessaging.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/GoogleCloudMessaging.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/HTML5Networking.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/HTML5Networking.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/Hardware.ini: -------------------------------------------------------------------------------- 1 | [GPU_NVIDIA] 2 | SuggestedDriverVersion=378.92 3 | Blacklist=(DriverVersion="<=347.09", Reason="Crashes with Paragon content using more recent GPU features") 4 | Blacklist=(DriverVersion="==372.70", Reason="This driver version has many known stability issues") 5 | Blacklist=(DriverVersion="==388.31", Reason="This driver is leaking memory latest known working driver was 388.13") 6 | Blacklist=(DriverVersion="==388.43", Reason="This driver is leaking memory latest known working driver was 388.13") 7 | Blacklist=(DriverVersion="==388.71", Reason="This driver is leaking memory latest known working driver was 388.13") 8 | 9 | [GPU_AMD] 10 | SuggestedDriverVersion=16.60.2711.0 11 | Blacklist=(DriverVersion="==15.300.1025.1001", Reason="Crashes with Paragon content using more recent GPU features") 12 | Blacklist=(DriverVersion="<=14.301.1001.0", Reason="Crashes with Paragon content using more recent GPU features") 13 | 14 | [GPU_Intel] 15 | SuggestedDriverVersion= 16 | 17 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/HoudiniEngine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/HoudiniEngine.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/IOSDeviceProfileSelector.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/IOSDeviceProfileSelector.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/ImgMedia.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/ImgMedia.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/ImmediatePhysics.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/ImmediatePhysics.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/InternationalizationExport.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/InternationalizationExport.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/KDevelopSourceCodeAccess.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/KDevelopSourceCodeAccess.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/LauncherChunkInstaller.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/LauncherChunkInstaller.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/LevelSequenceEditor.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/LevelSequenceEditor.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/LightPropagationVolume.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/LightPropagationVolume.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/Lightmass.ini: -------------------------------------------------------------------------------- 1 | [DevOptions.StaticLighting] 2 | bAllowMultiThreadedStaticLighting=True 3 | ViewSingleBounceNumber=-1 4 | bUseBilinearFilterLightmaps=True 5 | bCompressLightmaps=True 6 | bUseConservativeTexelRasterization=True 7 | bAccountForTexelSize=True 8 | bUseMaxWeight=True 9 | MaxTriangleLightingSamples=8 10 | MaxTriangleIrradiancePhotonCacheSamples=4 11 | bAllow64bitProcess=True 12 | DefaultStaticMeshLightingRes=32 13 | bAllowCropping=False 14 | bGarbageCollectAfterExport=True 15 | bRebuildDirtyGeometryForLighting=True 16 | bUseEmbree=true 17 | bVerifyEmbree=false 18 | bUseEmbreePacketTracing=false 19 | bUseFilteredCubemapForSkylight=true 20 | MappingSurfaceCacheDownsampleFactor=2 21 | 22 | [DevOptions.StaticLightingSceneConstants] 23 | StaticLightingLevelScale=1 24 | VisibilityRayOffsetDistance=.1 25 | VisibilityNormalOffsetDistance=3 26 | VisibilityNormalOffsetSampleRadiusScale=.5 27 | VisibilityTangentOffsetSampleRadiusScale=.8 28 | SmallestTexelRadius=.1 29 | LightGridSize=100 30 | AutomaticImportanceVolumeExpandBy=500 31 | MinimumImportanceVolumeExtentWithoutWarning=10000.0 32 | 33 | [DevOptions.StaticLightingMaterial] 34 | bUseDebugMaterial=False 35 | ShowMaterialAttribute=None 36 | EmissiveSampleSize=128 37 | DiffuseSampleSize=128 38 | SpecularSampleSize=128 39 | TransmissionSampleSize=256 40 | NormalSampleSize=256 41 | TerrainSampleScalar=4 42 | DebugDiffuse=(R=0.500000,G=0.500000,B=0.500000) 43 | EnvironmentColor=(R=0.00000,G=0.00000,B=0.00000) 44 | 45 | [DevOptions.MeshAreaLights] 46 | bVisualizeMeshAreaLightPrimitives=False 47 | EmissiveIntensityThreshold=.01 48 | MeshAreaLightGridSize=100 49 | MeshAreaLightSimplifyNormalAngleThreshold=25 50 | MeshAreaLightSimplifyCornerDistanceThreshold=.5 51 | MeshAreaLightSimplifyMeshBoundingRadiusFractionThreshold=.1 52 | MeshAreaLightGeneratedDynamicLightSurfaceOffset=30 53 | 54 | [DevOptions.PrecomputedDynamicObjectLighting] 55 | bVisualizeVolumeLightSamples=False 56 | bVisualizeVolumeLightInterpolation=False 57 | NumHemisphereSamplesScale=2 58 | SurfaceLightSampleSpacing=300 59 | FirstSurfaceSampleLayerHeight=50 60 | SurfaceSampleLayerHeightSpacing=250 61 | NumSurfaceSampleLayers=2 62 | DetailVolumeSampleSpacing=300 63 | VolumeLightSampleSpacing=3000 64 | MaxVolumeSamples=250000 65 | bUseMaxSurfaceSampleNum=True 66 | MaxSurfaceLightSamples=500000 67 | 68 | [DevOptions.VolumetricLightmaps] 69 | BrickSize=4 70 | MaxRefinementLevels=3 71 | VoxelizationCellExpansionForSurfaceGeometry=.1 72 | VoxelizationCellExpansionForVolumeGeometry=.25 73 | VoxelizationCellExpansionForLights=.1 74 | TargetNumVolumetricLightmapTasks=800 75 | MinBrickError=.01 76 | SurfaceLightmapMinTexelsPerVoxelAxis=1.0 77 | bCullBricksBelowLandscape=true 78 | LightBrightnessSubdivideThreshold=.3 79 | 80 | [DevOptions.PrecomputedVisibility] 81 | bVisualizePrecomputedVisibility=False 82 | bCompressVisibilityData=True 83 | bPlaceCellsOnOpaqueOnly=True 84 | NumCellDistributionBuckets=800 85 | CellRenderingBucketSize=5 86 | NumCellRenderingBuckets=5 87 | PlayAreaHeight=220 88 | MeshBoundsScale=1.2 89 | VisibilitySpreadingIterations=1 90 | MinMeshSamples=14 91 | MaxMeshSamples=40 92 | NumCellSamples=24 93 | NumImportanceSamples=40 94 | 95 | [DevOptions.PrecomputedVisibilityModeratelyAggressive] 96 | MeshBoundsScale=1 97 | VisibilitySpreadingIterations=1 98 | 99 | [DevOptions.PrecomputedVisibilityMostAggressive] 100 | MeshBoundsScale=1 101 | VisibilitySpreadingIterations=0 102 | 103 | [DevOptions.VolumeDistanceField] 104 | VoxelSize=75 105 | VolumeMaxDistance=900 106 | NumVoxelDistanceSamples=800 107 | MaxVoxels=3992160 108 | 109 | [DevOptions.StaticShadows] 110 | bUseZeroAreaLightmapSpaceFilteredLights=False 111 | NumShadowRays=8 112 | NumPenumbraShadowRays=8 113 | NumBounceShadowRays=1 114 | bFilterShadowFactor=True 115 | ShadowFactorGradientTolerance=0.5 116 | bAllowSignedDistanceFieldShadows=True 117 | MaxTransitionDistanceWorldSpace=50 118 | ApproximateHighResTexelsPerMaxTransitionDistance=50 119 | MinDistanceFieldUpsampleFactor=3 120 | MinUnoccludedFraction=.0005 121 | StaticShadowDepthMapTransitionSampleDistanceX=100 122 | StaticShadowDepthMapTransitionSampleDistanceY=100 123 | StaticShadowDepthMapSuperSampleFactor=2 124 | StaticShadowDepthMapMaxSamples=4194304 125 | 126 | [DevOptions.ImportanceTracing] 127 | bUseStratifiedSampling=True 128 | NumHemisphereSamples=16 129 | MaxHemisphereRayAngle=89 130 | NumAdaptiveRefinementLevels=2 131 | AdaptiveBrightnessThreshold=1 132 | AdaptiveFirstBouncePhotonConeAngle=4 133 | AdaptiveSkyVarianceThreshold=.5 134 | bUseRadiositySolverForSkylightMultibounce=True 135 | bCacheFinalGatherHitPointsForRadiosity=False 136 | bUseRadiositySolverForLightMultibounce=False 137 | 138 | [DevOptions.PhotonMapping] 139 | bUsePhotonMapping=True 140 | bUseFinalGathering=True 141 | bUsePhotonDirectLightingInFinalGather=False 142 | bVisualizeCachedApproximateDirectLighting=False 143 | bUseIrradiancePhotons=True 144 | bCacheIrradiancePhotonsOnSurfaces=True 145 | bVisualizePhotonPaths=False 146 | bVisualizePhotonGathers=True 147 | bVisualizePhotonImportanceSamples=False 148 | bVisualizeIrradiancePhotonCalculation=False 149 | bEmitPhotonsOutsideImportanceVolume=False 150 | ConeFilterConstant=1 151 | NumIrradianceCalculationPhotons=400 152 | FinalGatherImportanceSampleFraction=.6 153 | FinalGatherImportanceSampleConeAngle=10 154 | IndirectPhotonEmitDiskRadius=200 155 | IndirectPhotonEmitConeAngle=30 156 | MaxImportancePhotonSearchDistance=2000 157 | MinImportancePhotonSearchDistance=20 158 | NumImportanceSearchPhotons=10 159 | OutsideImportanceVolumeDensityScale=.0005 160 | DirectPhotonDensity=350 161 | DirectIrradiancePhotonDensity=350 162 | DirectPhotonSearchDistance=200 163 | IndirectPhotonPathDensity=5 164 | IndirectPhotonDensity=600 165 | IndirectIrradiancePhotonDensity=300 166 | IndirectPhotonSearchDistance=200 167 | PhotonSearchAngleThreshold=.5 168 | IrradiancePhotonSearchConeAngle=10 169 | bUsePhotonSegmentsForVolumeLighting=true 170 | PhotonSegmentMaxLength=1000 171 | GeneratePhotonSegmentChance=.01 172 | 173 | [DevOptions.IrradianceCache] 174 | bAllowIrradianceCaching=True 175 | bUseIrradianceGradients=False 176 | bShowGradientsOnly=False 177 | bVisualizeIrradianceSamples=True 178 | RecordRadiusScale=.8 179 | InterpolationMaxAngle=20 180 | PointBehindRecordMaxAngle=10 181 | DistanceSmoothFactor=4 182 | AngleSmoothFactor=4 183 | SkyOcclusionSmoothnessReduction=.5 184 | MaxRecordRadius=1024 185 | CacheTaskSize=64 186 | InterpolateTaskSize=64 187 | 188 | [DevOptions.StaticLightingMediumQuality] 189 | NumShadowRaysScale=2 190 | NumPenumbraShadowRaysScale=4 191 | ApproximateHighResTexelsPerMaxTransitionDistanceScale=3 192 | MinDistanceFieldUpsampleFactor=3 193 | NumHemisphereSamplesScale=2 194 | NumImportanceSearchPhotonsScale=1 195 | NumDirectPhotonsScale=2 196 | DirectPhotonSearchDistanceScale=.5 197 | NumIndirectPhotonPathsScale=1 198 | NumIndirectPhotonsScale=2 199 | NumIndirectIrradiancePhotonsScale=2 200 | RecordRadiusScaleScale=.75 201 | InterpolationMaxAngleScale=1 202 | IrradianceCacheSmoothFactor=.75 203 | NumAdaptiveRefinementLevels=3 204 | AdaptiveBrightnessThresholdScale=.5 205 | AdaptiveFirstBouncePhotonConeAngleScale=1 206 | AdaptiveSkyVarianceThresholdScale=1 207 | 208 | [DevOptions.StaticLightingHighQuality] 209 | NumShadowRaysScale=4 210 | NumPenumbraShadowRaysScale=8 211 | ApproximateHighResTexelsPerMaxTransitionDistanceScale=6 212 | MinDistanceFieldUpsampleFactor=5 213 | NumHemisphereSamplesScale=4 214 | NumImportanceSearchPhotonsScale=2 215 | NumDirectPhotonsScale=2 216 | DirectPhotonSearchDistanceScale=.5 217 | NumIndirectPhotonPathsScale=2 218 | NumIndirectPhotonsScale=4 219 | NumIndirectIrradiancePhotonsScale=2 220 | RecordRadiusScaleScale=.75 221 | InterpolationMaxAngleScale=.75 222 | IrradianceCacheSmoothFactor=.75 223 | NumAdaptiveRefinementLevels=3 224 | AdaptiveBrightnessThresholdScale=.25 225 | AdaptiveFirstBouncePhotonConeAngleScale=2 226 | AdaptiveSkyVarianceThresholdScale=.5 227 | 228 | [DevOptions.StaticLightingProductionQuality] 229 | NumShadowRaysScale=8 230 | NumPenumbraShadowRaysScale=32 231 | ApproximateHighResTexelsPerMaxTransitionDistanceScale=6 232 | MinDistanceFieldUpsampleFactor=5 233 | NumHemisphereSamplesScale=8 234 | NumImportanceSearchPhotonsScale=3 235 | NumDirectPhotonsScale=4 236 | DirectPhotonSearchDistanceScale=.5 237 | NumIndirectPhotonPathsScale=2 238 | NumIndirectPhotonsScale=8 239 | NumIndirectIrradiancePhotonsScale=2 240 | RecordRadiusScaleScale=.5625 241 | InterpolationMaxAngleScale=.75 242 | IrradianceCacheSmoothFactor=.75 243 | NumAdaptiveRefinementLevels=3 244 | AdaptiveBrightnessThresholdScale=.25 245 | AdaptiveFirstBouncePhotonConeAngleScale=2.5 246 | AdaptiveSkyVarianceThresholdScale=.5 247 | 248 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/LinearTimecode.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/LinearTimecode.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/LinuxDeviceProfileSelector.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/LinuxDeviceProfileSelector.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/LiveLink.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/LiveLink.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/LocalizationServiceSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/LocalizationServiceSettings.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/LocationServicesBPLibrary.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/LocationServicesBPLibrary.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/MacGraphicsSwitching.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/MacGraphicsSwitching.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/MagicLeap.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/MagicLeap.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/MagicLeapEmulator.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/MagicLeapEmulator.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/MagicLeapMedia.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/MagicLeapMedia.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/MatineeToLevelSequence.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/MatineeToLevelSequence.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/MediaCompositing.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/MediaCompositing.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/MediaPlayerEditor.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/MediaPlayerEditor.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/MeshEditor.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/MeshEditor.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/MobileLauncherProfileWizard.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/MobileLauncherProfileWizard.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/MobilePatchingUtils.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/MobilePatchingUtils.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/NUTUnrealEngine4.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/NUTUnrealEngine4.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/NetcodeUnitTest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/NetcodeUnitTest.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/NullSourceCodeAccess.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/NullSourceCodeAccess.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/OculusVR.ini: -------------------------------------------------------------------------------- 1 | [CoreRedirects] 2 | PackageRedirects=(OldName="/Script/GearVR", NewName="/Script/OculusHMD") 3 | ClassRedirects=(OldName="/Script/GearVR.GearVRFunctionLibrary", NewName="/Script/OculusHMD.OculusFunctionLibrary") 4 | PackageRedirects=(OldName="/Script/GearVRController", NewName="/Script/OculusHMD") 5 | ClassRedirects=(OldName="/Script/GearVRController.GearVRControllerFunctionLibrary", NewName="/Script/OculusHMD.OculusFunctionLibrary") 6 | EnumRedirects=(OldName="/Script/GearVRController.EGearVRControllerHandedness", NewName="/Script/OculusHMD.EGearVRControllerHandedness_DEPRECATED", ValueChanges=(("RightHanded","RightHanded_DEPRECATED"), ("LeftHanded","LeftHanded_DEPRECATED"), ("Unknown","Unknown_DEPRECATED")) ) 7 | ClassRedirects=(OldName="/Script/GearVRController.GearVRControllerComponent", NewName="/Script/OculusHMD.DeprecatedGearVRControllerComponent") 8 | PackageRedirects=(OldName="/Script/OculusLibrary", NewName="/Script/OculusHMD") 9 | PackageRedirects=(OldName="/Script/OculusRift", NewName="/Script/OculusHMD") 10 | ClassRedirects=(OldName="/Script/OculusRift.OculusRiftBoundaryComponent", NewName="/Script/OculusHMD.OculusBoundaryComponent") 11 | 12 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/OnlineSubsystem.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/OnlineSubsystem.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/OnlineSubsystemGooglePlay.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/OnlineSubsystemGooglePlay.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/OnlineSubsystemIOS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/OnlineSubsystemIOS.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/OnlineSubsystemNull.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/OnlineSubsystemNull.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/OnlineSubsystemUtils.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/OnlineSubsystemUtils.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/Paper2D.ini: -------------------------------------------------------------------------------- 1 | [CoreRedirects] 2 | ClassRedirects=(OldName="PaperAnimatedRenderComponent", NewName="/Script/Paper2D.PaperFlipbookComponent") 3 | ClassRedirects=(OldName="PaperRenderActor", NewName="/Script/Paper2D.PaperSpriteActor") 4 | ClassRedirects=(OldName="PaperRenderComponent", NewName="/Script/Paper2D.PaperSpriteComponent") 5 | ClassRedirects=(OldName="PaperTileMapRenderComponent", NewName="/Script/Paper2D.PaperTileMapComponent") 6 | ClassRedirects=(OldName="PaperSpriteSheet", NewName="/Script/PaperSpritesheetImporter.PaperSpriteSheet") 7 | PropertyRedirects=(OldName="PaperTileSet.ExperimentalPerTileData", NewName="PaperTileSet.PerTileData") 8 | PropertyRedirects=(OldName="PaperRenderComponent.TestMaterial", NewName="PaperRenderComponent.MaterialOverride") 9 | 10 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/PerforceSourceControl.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/PerforceSourceControl.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/PhysXVehicles.ini: -------------------------------------------------------------------------------- 1 | [CoreRedirects] 2 | ClassRedirects=(OldName="AnimGraphNode_WheelHandler", NewName="/Script/PhysXVehiclesEditor.AnimGraphNode_WheelHandler") 3 | ClassRedirects=(OldName="SimpleWheeledVehicleMovementComponent", NewName="/Script/PhysXVehicles.SimpleWheeledVehicleMovementComponent") 4 | ClassRedirects=(OldName="VehicleSim", NewName="/Script/PhysXVehicles.WheeledVehicleMovementComponent") 5 | ClassRedirects=(OldName="MovementComp_Vehicle", NewName="/Script/PhysXVehicles.WheeledVehicleMovementComponent") 6 | ClassRedirects=(OldName="Vehicle", NewName="/Script/PhysXVehicles.WheeledVehicle") 7 | ClassRedirects=(OldName="WheeledVehicle", NewName="/Script/PhysXVehicles.WheeledVehicle") 8 | ClassRedirects=(OldName="VehicleMovementComponent", NewName="/Script/PhysXVehicles.WheeledVehicleMovementComponent") 9 | ClassRedirects=(OldName="WheeledVehicleMovementComponent", NewName="/Script/PhysXVehicles.WheeledVehicleMovementComponent") 10 | ClassRedirects=(OldName="VehicleMovementComponent4W", NewName="/Script/PhysXVehicles.WheeledVehicleMovementComponent4W") 11 | ClassRedirects=(OldName="WheeledVehicleMovementComponent4W", NewName="/Script/PhysXVehicles.WheeledVehicleMovementComponent4W") 12 | ClassRedirects=(OldName="VehicleAnimInstance", NewName="/Script/PhysXVehicles.VehicleAnimInstance") 13 | ClassRedirects=(OldName="VehicleWheel", NewName="/Script/PhysXVehicles.VehicleWheel") 14 | StructRedirects=(OldName="AnimNode_WheelHandler", NewName="/Script/PhysXVehicles.AnimNode_WheelHandler") 15 | 16 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/PluginBrowser.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/PluginBrowser.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/ProceduralMeshComponent.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/ProceduralMeshComponent.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/ProfilerSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/ProfilerSettings.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/ProxyLODPlugin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/ProxyLODPlugin.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/RuntimePhysXCooking.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/RuntimePhysXCooking.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/SourceControlSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/SourceControlSettings.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/SpeedTreeImporter.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/SpeedTreeImporter.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/SteamVR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/SteamVR.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/SubversionSourceControl.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/SubversionSourceControl.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/TcpMessaging.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/TcpMessaging.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/TemplateDefs.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/TemplateDefs.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/TranslationPickerSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/TranslationPickerSettings.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/UObjectPlugin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/UObjectPlugin.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/UdpMessaging.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/UdpMessaging.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/UnitTest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/UnitTest.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/UnitTestStats.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/UnitTestStats.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/VisualStudioCodeSourceCodeAccess.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/VisualStudioCodeSourceCodeAccess.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/VisualStudioSourceCodeAccess.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/VisualStudioSourceCodeAccess.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/WindowsMoviePlayer.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/WindowsMoviePlayer.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/WmfMedia.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/WmfMedia.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/XCodeSourceCodeAccess.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/Config/CoalescedSourceConfigs/XCodeSourceCodeAccess.ini -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Intermediate/ReimportCache/3688439234.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Intermediate/ReimportCache/3688439234.bin -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/README.txt: -------------------------------------------------------------------------------- 1 | This Project is based on the Unreal Engine 4 Content examples render target fluid system. 2 | All additional complex features are created by me using blueprints. 3 | It was created in my free time without any sponsoring. 4 | 5 | You are free to use this complex water system in any project: free, indie or commercial. 6 | Anyways, giving a little credit somewhere would make me happy :D 7 | 8 | Why is it free? 9 | - 1. I can't provide lifetime support 10 | - 2. I am no programmer and I may not be able to fix limitations or issues 11 | 12 | Important Sidenotes: 13 | 14 | - use two sided materials for better simulation!!! 15 | - Hitches around every 60 seconds are cause by garbage collection and dont appear in packaged game 16 | - Hitches around every 2 seconds may appear at fixed framerates, unlimit fps to fix that 17 | 18 | check my channel for other projects ;) 19 | https://www.youtube.com/marvelmaster 20 | 21 | 22 | And If you want to support me and my work check these: 23 | 24 | __________________________________________________ 25 | https://www.patreon.com/marvelmaster 26 | 27 | or 28 | 29 | https://www.paypal.me/marvelmasteryt 30 | __________________________________________________ 31 | 32 | All donation money flows into better software, equipement and assets. 33 | 34 | greetings 35 | 36 | Marvelmaster 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/RawFiles/BoxGradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/RawFiles/BoxGradient.png -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/RawFiles/DebugDistance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/RawFiles/DebugDistance.png -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/RawFiles/Grass_VPainted.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/RawFiles/Grass_VPainted.fbx -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/RawFiles/ImpactTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/RawFiles/ImpactTexture.png -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/RawFiles/MarvelmasterMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/RawFiles/MarvelmasterMask.png -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/RawFiles/PlaneMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/RawFiles/PlaneMask.png -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/RawFiles/RainDrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/RawFiles/RainDrop.png -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/RawFiles/RoundMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/RawFiles/RoundMask.png -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/RawFiles/SM_Grass.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/RawFiles/SM_Grass.FBX -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/RawFiles/Splash.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/RawFiles/Splash.fbx -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/RawFiles/StandardMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/RawFiles/StandardMask.png -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/RawFiles/Star.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/RawFiles/Star.fbx -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/RawFiles/WaterJetSound.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/RawFiles/WaterJetSound.wav -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/RawFiles/WaterPlaneForNormal_4V.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/RawFiles/WaterPlaneForNormal_4V.fbx -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/RawFiles/WaterPlaneForTesselation_4kV.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/RawFiles/WaterPlaneForTesselation_4kV.fbx -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/RawFiles/ZeldaMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/RawFiles/ZeldaMask.png -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/RawFiles/buoyancy_plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/RawFiles/buoyancy_plane.png -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/RawFiles/caustics_1024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/RawFiles/caustics_1024.jpg -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Reactive_Water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Reactive_Water.png -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Reactive_Water.uproject: -------------------------------------------------------------------------------- 1 | { 2 | "FileVersion": 3, 3 | "EngineAssociation": "4.20", 4 | "Category": "", 5 | "Description": "", 6 | "Plugins": [ 7 | { 8 | "Name": "HoudiniEngine", 9 | "Enabled": false 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/AutoScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Saved/AutoScreenshot.png -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/ConsoleHistory.ini: -------------------------------------------------------------------------------- 1 | [ConsoleHistory] 2 | History=stat fs 3 | History=stt fps 4 | History=sttat fps 5 | History=^stat fps 6 | History=t.MaxFPS 7 | History=t.maxFPS 30 8 | History=t.maxFPS 60 9 | History=t.maxFPS 19 10 | History=stat unit 11 | History=stat startfile 12 | History=stat stopfile 13 | History=sta fps 14 | History=ShowFlag.Wireframe 15 | History=ShowFlag.Wireframe^ 16 | History=ShowFlag.Wireframe 1 17 | History=ShowFlag.Wireframe 2 18 | History=Slate.ShowWireFrame 19 | History=Slate.ShowWireFrame 1 20 | History=Slate.ShowWireFrame 10 21 | History=Slate.ShowWireFrame 0 22 | History=r.ForceDebugViewModes 23 | History=r.ForceDebugViewModes 0 24 | History=stat fp 25 | History=ststt fps 26 | History=stst fps 27 | History=r.ScreenPercentage 28 | History=r.ScreenPercentage 50 29 | History=show collision 30 | History=r.DumpRenderTargetPoolMemory 31 | History=r.DisplayInternals 32 | History=stat MemoryPlatform 33 | History=ShowFlag.Collision 34 | History=ShowFlag.CollisionPawn 35 | History=ShowFlag.Bounds 36 | History=stat fps 37 | History=stat gpi 38 | History=r.GPUStatsEnabled 39 | 40 | 41 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-0EED60F44DBDA09BF0BAC187BEAA910E/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-27AF23A04C7691DADE04B790E3624CF4/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-30B3738B440B2F40BB543A94D0959FE0/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-47C9FE97405150742CAC09BFD44D9A95/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-4E31A5784496B0EF43FB38AE42FA9AAB/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-4F1A115342E525DB002C97B3A4D42070/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-6749BF3B4A24EC4843240C84980E781F/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-6BCD08F143FEE7C417637FAF9361E4A8/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-7A2283CF4EC65B8B47E8259E3BD8981E/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-7EF6D1824083DCF2B36095B86E85C73B/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-82CB4A8C447D0E557615A2AD8420F326/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-84D774D04D3DD0395BE52698BDC18606/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-87957280435A6082DD533BA3A4969564/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-891EFA174E5209BF9633B3AC797312BA/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-89D942424535B6431E351782413674FB/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-8C6ECF244AED797F15CD03BB87CBAC96/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-8C8294334F7052268A2A338C61144385/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-8CA57C4E4AEBB4F1085B2091E744A841/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-961C0A4B43D6C7E51468EBA6878ED86F/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-A23D140B44970ECBD6A1BCB93D6B3DB9/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-A26B27264A515662CCD13EB65EED2F62/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-A9263E974C2A5D450F69439D128F2B67/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-B0B27B1F48AC2A3E84BA70BF8B1B2AD2/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-BD5047814130C28012A1F68595C53762/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-C0461F14453A447580173F8EFFABE7D5/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-C78A8BCA42B005E632D4679B437AFBF4/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-CE3A9BD344686C4FFFE57A93566AC77E/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-CFE2BCD54E1A73353033BB990B02E01E/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-D70047264EEA44EFD25176B9EE571B89/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-DD86032F479E55CA1A3F678A2FA7F1C7/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-DE611DC6438E2F6CC04EF288817E7B45/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-E237BB3D4652B3169A6AD1A667660C7B/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-E3F7BEA74BC9F1C59414E0A2C2D36FFC/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-E64A74D04342E00538DA008612FDB879/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/CrashReportClient/UE4CC-Windows-F934FD84483FE55950E790B9D1AC58DB/CrashReportClient.ini: -------------------------------------------------------------------------------- 1 | [CrashReportClient] 2 | bHideLogFilesOption=false 3 | bIsAllowedToCloseWithoutSending=true 4 | CrashConfigPurgeDays=2 5 | 6 | 7 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/Windows/Compat.ini: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/Windows/DeviceProfiles.ini: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/Windows/Editor.ini: -------------------------------------------------------------------------------- 1 | [/Script/UnrealEd.UnrealEdOptions] 2 | UsingXGE=False 3 | bExpandCustomClassPickerClassList=True 4 | 5 | [EditorLayouts] 6 | NullLayout="(\\\r\n\t\"Type\": \"Layout\",\\\r\n\t\"Name\": \"NullLayout\",\\\r\n\t\"PrimaryAreaIndex\": 0,\\\r\n\t\"Areas\": [\\\r\n\t\t(\\\r\n\t\t\t\"SizeCoefficient\": 1,\\\r\n\t\t\t\"Type\": \"Area\",\\\r\n\t\t\t\"Orientation\": \"Orient_Horizontal\",\\\r\n\t\t\t\"WindowPlacement\": \"Placement_NoWindow\",\\\r\n\t\t\t\"Nodes\": []\\\r\n\t\t)\\\r\n\t]\\\r\n)" 7 | 8 | [/Script/AdvancedPreviewScene.LocalProfiles] 9 | Profiles=(ProfileName="Profile_0",bSharedProfile=False,DirectionalLightIntensity=1.000000,DirectionalLightColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000),SkyLightIntensity=1.000000,bRotateLightingRig=False,bShowEnvironment=True,bShowFloor=True,EnvironmentColor=(R=0.200000,G=0.200000,B=0.200000,A=1.000000),EnvironmentIntensity=1.000000,EnvironmentCubeMapPath="/Engine/EditorMaterials/AssetViewer/EpicQuadPanorama_CC+EV1.EpicQuadPanorama_CC+EV1",PostProcessingSettings=(bOverride_WhiteTemp=False,bOverride_WhiteTint=False,bOverride_ColorSaturation=False,bOverride_ColorContrast=False,bOverride_ColorGamma=False,bOverride_ColorGain=False,bOverride_ColorOffset=False,bOverride_ColorSaturationShadows=False,bOverride_ColorContrastShadows=False,bOverride_ColorGammaShadows=False,bOverride_ColorGainShadows=False,bOverride_ColorOffsetShadows=False,bOverride_ColorSaturationMidtones=False,bOverride_ColorContrastMidtones=False,bOverride_ColorGammaMidtones=False,bOverride_ColorGainMidtones=False,bOverride_ColorOffsetMidtones=False,bOverride_ColorSaturationHighlights=False,bOverride_ColorContrastHighlights=False,bOverride_ColorGammaHighlights=False,bOverride_ColorGainHighlights=False,bOverride_ColorOffsetHighlights=False,bOverride_ColorCorrectionShadowsMax=False,bOverride_ColorCorrectionHighlightsMin=False,bOverride_BlueCorrection=False,bOverride_ExpandGamut=False,bOverride_FilmWhitePoint=False,bOverride_FilmSaturation=False,bOverride_FilmChannelMixerRed=False,bOverride_FilmChannelMixerGreen=False,bOverride_FilmChannelMixerBlue=False,bOverride_FilmContrast=False,bOverride_FilmDynamicRange=False,bOverride_FilmHealAmount=False,bOverride_FilmToeAmount=False,bOverride_FilmShadowTint=False,bOverride_FilmShadowTintBlend=False,bOverride_FilmShadowTintAmount=False,bOverride_FilmSlope=False,bOverride_FilmToe=False,bOverride_FilmShoulder=False,bOverride_FilmBlackClip=False,bOverride_FilmWhiteClip=False,bOverride_SceneColorTint=False,bOverride_SceneFringeIntensity=False,bOverride_ChromaticAberrationStartOffset=False,bOverride_AmbientCubemapTint=False,bOverride_AmbientCubemapIntensity=False,bOverride_BloomMethod=False,bOverride_BloomIntensity=False,bOverride_BloomThreshold=False,bOverride_Bloom1Tint=False,bOverride_Bloom1Size=False,bOverride_Bloom2Size=False,bOverride_Bloom2Tint=False,bOverride_Bloom3Tint=False,bOverride_Bloom3Size=False,bOverride_Bloom4Tint=False,bOverride_Bloom4Size=False,bOverride_Bloom5Tint=False,bOverride_Bloom5Size=False,bOverride_Bloom6Tint=False,bOverride_Bloom6Size=False,bOverride_BloomSizeScale=False,bOverride_BloomConvolutionTexture=False,bOverride_BloomConvolutionSize=False,bOverride_BloomConvolutionCenterUV=False,bOverride_BloomConvolutionPreFilter=False,bOverride_BloomConvolutionPreFilterMin=False,bOverride_BloomConvolutionPreFilterMax=False,bOverride_BloomConvolutionPreFilterMult=False,bOverride_BloomConvolutionBufferScale=False,bOverride_BloomDirtMaskIntensity=False,bOverride_BloomDirtMaskTint=False,bOverride_BloomDirtMask=False,bOverride_CameraShutterSpeed=False,bOverride_CameraISO=False,bOverride_AutoExposureMethod=False,bOverride_AutoExposureLowPercent=False,bOverride_AutoExposureHighPercent=False,bOverride_AutoExposureMinBrightness=False,bOverride_AutoExposureMaxBrightness=False,bOverride_AutoExposureCalibrationConstant=False,bOverride_AutoExposureSpeedUp=False,bOverride_AutoExposureSpeedDown=False,bOverride_AutoExposureBias=False,bOverride_HistogramLogMin=False,bOverride_HistogramLogMax=False,bOverride_LensFlareIntensity=False,bOverride_LensFlareTint=False,bOverride_LensFlareTints=False,bOverride_LensFlareBokehSize=False,bOverride_LensFlareBokehShape=False,bOverride_LensFlareThreshold=False,bOverride_VignetteIntensity=False,bOverride_GrainIntensity=False,bOverride_GrainJitter=False,bOverride_AmbientOcclusionIntensity=False,bOverride_AmbientOcclusionStaticFraction=False,bOverride_AmbientOcclusionRadius=False,bOverride_AmbientOcclusionFadeDistance=False,bOverride_AmbientOcclusionFadeRadius=False,bOverride_AmbientOcclusionDistance=False,bOverride_AmbientOcclusionRadiusInWS=False,bOverride_AmbientOcclusionPower=False,bOverride_AmbientOcclusionBias=False,bOverride_AmbientOcclusionQuality=False,bOverride_AmbientOcclusionMipBlend=False,bOverride_AmbientOcclusionMipScale=False,bOverride_AmbientOcclusionMipThreshold=False,bOverride_LPVIntensity=False,bOverride_LPVDirectionalOcclusionIntensity=False,bOverride_LPVDirectionalOcclusionRadius=False,bOverride_LPVDiffuseOcclusionExponent=False,bOverride_LPVSpecularOcclusionExponent=False,bOverride_LPVDiffuseOcclusionIntensity=False,bOverride_LPVSpecularOcclusionIntensity=False,bOverride_LPVSize=False,bOverride_LPVSecondaryOcclusionIntensity=False,bOverride_LPVSecondaryBounceIntensity=False,bOverride_LPVGeometryVolumeBias=False,bOverride_LPVVplInjectionBias=False,bOverride_LPVEmissiveInjectionIntensity=False,bOverride_LPVFadeRange=False,bOverride_LPVDirectionalOcclusionFadeRange=False,bOverride_IndirectLightingColor=False,bOverride_IndirectLightingIntensity=False,bOverride_ColorGradingIntensity=False,bOverride_ColorGradingLUT=False,bOverride_DepthOfFieldFocalDistance=False,bOverride_DepthOfFieldFstop=False,bOverride_DepthOfFieldMinFstop=False,bOverride_DepthOfFieldBladeCount=False,bOverride_DepthOfFieldSensorWidth=False,bOverride_DepthOfFieldDepthBlurRadius=False,bOverride_DepthOfFieldDepthBlurAmount=False,bOverride_DepthOfFieldFocalRegion=False,bOverride_DepthOfFieldNearTransitionRegion=False,bOverride_DepthOfFieldFarTransitionRegion=False,bOverride_DepthOfFieldScale=False,bOverride_DepthOfFieldMaxBokehSize=False,bOverride_DepthOfFieldNearBlurSize=False,bOverride_DepthOfFieldFarBlurSize=False,bOverride_DepthOfFieldMethod=False,bOverride_MobileHQGaussian=False,bOverride_DepthOfFieldBokehShape=False,bOverride_DepthOfFieldOcclusion=False,bOverride_DepthOfFieldColorThreshold=False,bOverride_DepthOfFieldSizeThreshold=False,bOverride_DepthOfFieldSkyFocusDistance=False,bOverride_DepthOfFieldVignetteSize=False,bOverride_MotionBlurAmount=False,bOverride_MotionBlurMax=False,bOverride_MotionBlurPerObjectSize=False,bOverride_ScreenPercentage=False,bOverride_ScreenSpaceReflectionIntensity=False,bOverride_ScreenSpaceReflectionQuality=False,bOverride_ScreenSpaceReflectionMaxRoughness=False,bOverride_ScreenSpaceReflectionRoughnessScale=False,WhiteTemp=6500.000000,WhiteTint=0.000000,ColorSaturation=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorContrast=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorGamma=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorGain=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorOffset=(X=0.000000,Y=0.000000,Z=0.000000,W=0.000000),ColorSaturationShadows=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorContrastShadows=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorGammaShadows=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorGainShadows=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorOffsetShadows=(X=0.000000,Y=0.000000,Z=0.000000,W=0.000000),ColorCorrectionShadowsMax=0.090000,ColorSaturationMidtones=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorContrastMidtones=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorGammaMidtones=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorGainMidtones=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorOffsetMidtones=(X=0.000000,Y=0.000000,Z=0.000000,W=0.000000),ColorSaturationHighlights=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorContrastHighlights=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorGammaHighlights=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorGainHighlights=(X=1.000000,Y=1.000000,Z=1.000000,W=1.000000),ColorOffsetHighlights=(X=0.000000,Y=0.000000,Z=0.000000,W=0.000000),ColorCorrectionHighlightsMin=0.500000,BlueCorrection=0.600000,ExpandGamut=1.000000,FilmSlope=0.880000,FilmToe=0.550000,FilmShoulder=0.260000,FilmBlackClip=0.000000,FilmWhiteClip=0.040000,FilmWhitePoint=(R=1.000000,G=1.000000,B=1.000000,A=1.000000),FilmShadowTint=(R=1.000000,G=1.000000,B=1.000000,A=1.000000),FilmShadowTintBlend=0.500000,FilmShadowTintAmount=0.000000,FilmSaturation=1.000000,FilmChannelMixerRed=(R=1.000000,G=0.000000,B=0.000000,A=1.000000),FilmChannelMixerGreen=(R=0.000000,G=1.000000,B=0.000000,A=1.000000),FilmChannelMixerBlue=(R=0.000000,G=0.000000,B=1.000000,A=1.000000),FilmContrast=0.030000,FilmToeAmount=1.000000,FilmHealAmount=1.000000,FilmDynamicRange=4.000000,SceneColorTint=(R=1.000000,G=1.000000,B=1.000000,A=1.000000),SceneFringeIntensity=0.000000,ChromaticAberrationStartOffset=0.000000,BloomMethod=BM_SOG,BloomIntensity=0.675000,BloomThreshold=-1.000000,BloomSizeScale=4.000000,Bloom1Size=0.300000,Bloom2Size=1.000000,Bloom3Size=2.000000,Bloom4Size=10.000000,Bloom5Size=30.000000,Bloom6Size=64.000000,Bloom1Tint=(R=0.346500,G=0.346500,B=0.346500,A=1.000000),Bloom2Tint=(R=0.138000,G=0.138000,B=0.138000,A=1.000000),Bloom3Tint=(R=0.117600,G=0.117600,B=0.117600,A=1.000000),Bloom4Tint=(R=0.066000,G=0.066000,B=0.066000,A=1.000000),Bloom5Tint=(R=0.066000,G=0.066000,B=0.066000,A=1.000000),Bloom6Tint=(R=0.061000,G=0.061000,B=0.061000,A=1.000000),BloomConvolutionTexture=None,BloomConvolutionSize=1.000000,BloomConvolutionCenterUV=(X=0.500000,Y=0.500000),BloomConvolutionPreFilter=(X=-1.000000,Y=-1.000000,Z=-1.000000),BloomConvolutionPreFilterMin=7.000000,BloomConvolutionPreFilterMax=15000.000000,BloomConvolutionPreFilterMult=15.000000,BloomConvolutionBufferScale=0.133000,BloomDirtMask=None,BloomDirtMaskIntensity=0.000000,BloomDirtMaskTint=(R=0.500000,G=0.500000,B=0.500000,A=1.000000),AmbientCubemapTint=(R=1.000000,G=1.000000,B=1.000000,A=1.000000),AmbientCubemapIntensity=1.000000,AmbientCubemap=None,CameraShutterSpeed=60.000000,CameraISO=100.000000,DepthOfFieldFstop=4.000000,DepthOfFieldMinFstop=1.200000,DepthOfFieldBladeCount=7,AutoExposureBias=0.000000,AutoExposureMethod=AEM_Histogram,AutoExposureLowPercent=80.000000,AutoExposureHighPercent=98.300003,AutoExposureMinBrightness=0.030000,AutoExposureMaxBrightness=2.000000,AutoExposureSpeedUp=3.000000,AutoExposureSpeedDown=1.000000,HistogramLogMin=-8.000000,HistogramLogMax=4.000000,AutoExposureCalibrationConstant=16.000000,LensFlareIntensity=1.000000,LensFlareTint=(R=1.000000,G=1.000000,B=1.000000,A=1.000000),LensFlareBokehSize=3.000000,LensFlareThreshold=8.000000,LensFlareBokehShape=None,LensFlareTints[0]=(R=1.000000,G=0.800000,B=0.400000,A=0.600000),LensFlareTints[1]=(R=1.000000,G=1.000000,B=0.600000,A=0.530000),LensFlareTints[2]=(R=0.800000,G=0.800000,B=1.000000,A=0.460000),LensFlareTints[3]=(R=0.500000,G=1.000000,B=0.400000,A=0.390000),LensFlareTints[4]=(R=0.500000,G=0.800000,B=1.000000,A=0.310000),LensFlareTints[5]=(R=0.900000,G=1.000000,B=0.800000,A=0.270000),LensFlareTints[6]=(R=1.000000,G=0.800000,B=0.400000,A=0.220000),LensFlareTints[7]=(R=0.900000,G=0.700000,B=0.700000,A=0.150000),VignetteIntensity=0.400000,GrainJitter=0.000000,GrainIntensity=0.000000,AmbientOcclusionIntensity=0.500000,AmbientOcclusionStaticFraction=1.000000,AmbientOcclusionRadius=200.000000,AmbientOcclusionRadiusInWS=False,AmbientOcclusionFadeDistance=8000.000000,AmbientOcclusionFadeRadius=5000.000000,AmbientOcclusionDistance=80.000000,AmbientOcclusionPower=2.000000,AmbientOcclusionBias=3.000000,AmbientOcclusionQuality=50.000000,AmbientOcclusionMipBlend=0.600000,AmbientOcclusionMipScale=1.700000,AmbientOcclusionMipThreshold=0.010000,IndirectLightingColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000),IndirectLightingIntensity=1.000000,ColorGradingIntensity=1.000000,ColorGradingLUT=None,DepthOfFieldMethod=DOFM_BokehDOF,bMobileHQGaussian=False,DepthOfFieldSensorWidth=24.576000,DepthOfFieldFocalDistance=1000.000000,DepthOfFieldDepthBlurAmount=1.000000,DepthOfFieldDepthBlurRadius=0.000000,DepthOfFieldFocalRegion=0.000000,DepthOfFieldNearTransitionRegion=300.000000,DepthOfFieldFarTransitionRegion=500.000000,DepthOfFieldScale=0.000000,DepthOfFieldMaxBokehSize=15.000000,DepthOfFieldNearBlurSize=15.000000,DepthOfFieldFarBlurSize=15.000000,DepthOfFieldBokehShape=None,DepthOfFieldOcclusion=0.400000,DepthOfFieldColorThreshold=1.000000,DepthOfFieldSizeThreshold=0.080000,DepthOfFieldSkyFocusDistance=0.000000,DepthOfFieldVignetteSize=200.000000,MotionBlurAmount=0.500000,MotionBlurMax=5.000000,MotionBlurPerObjectSize=0.500000,LPVIntensity=1.000000,LPVVplInjectionBias=0.640000,LPVSize=5312.000000,LPVSecondaryOcclusionIntensity=0.000000,LPVSecondaryBounceIntensity=0.000000,LPVGeometryVolumeBias=0.384000,LPVEmissiveInjectionIntensity=1.000000,LPVDirectionalOcclusionIntensity=0.000000,LPVDirectionalOcclusionRadius=8.000000,LPVDiffuseOcclusionExponent=1.000000,LPVSpecularOcclusionExponent=7.000000,LPVDiffuseOcclusionIntensity=1.000000,LPVSpecularOcclusionIntensity=1.000000,ScreenSpaceReflectionIntensity=100.000000,ScreenSpaceReflectionQuality=50.000000,ScreenSpaceReflectionMaxRoughness=0.600000,LPVFadeRange=0.000000,LPVDirectionalOcclusionFadeRange=0.000000,ScreenPercentage=100.000000,WeightedBlendables=(Array=),Blendables=),bPostProcessingEnabled=True,LightingRigRotation=0.000000,RotationSpeed=2.000000,DirectionalLightRotation=(Pitch=-40.000000,Yaw=-67.500000,Roll=0.000000)) 10 | 11 | 12 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/Windows/Engine.ini: -------------------------------------------------------------------------------- 1 | [Core.System] 2 | Paths=../../../Engine/Content 3 | Paths=%GAMEDIR%Content 4 | Paths=../../../Engine/Plugins/2D/Paper2D/Content 5 | Paths=../../../Engine/Plugins/Editor/CryptoKeys/Content 6 | Paths=../../../Engine/Plugins/Enterprise/DatasmithContent/Content 7 | Paths=../../../Engine/Plugins/Media/MediaCompositing/Content 8 | Paths=../../../Engine/Plugins/Runtime/AppleARKit/Content 9 | Paths=../../../Engine/Plugins/Runtime/Oculus/OculusVR/Content 10 | Paths=../../../Engine/Plugins/Runtime/Steam/SteamVR/Content 11 | Paths=../../../Engine/Plugins/Editor/MeshEditor/Content 12 | Paths=../../../Engine/Plugins/Lumin/MagicLeap/Content 13 | Paths=../../../Engine/Plugins/Lumin/MagicLeapEmulator/Content 14 | Paths=../../../Engine/Plugins/Runtime/HoudiniEngine/Content 15 | 16 | [/Script/UdpMessaging.UdpMessagingSettings] 17 | EnableTransport=True 18 | UnicastEndpoint=0.0.0.0:0 19 | MulticastEndpoint=230.0.0.1:6666 20 | MulticastTimeToLive=1 21 | EnableTunnel=False 22 | TunnelUnicastEndpoint= 23 | TunnelMulticastEndpoint= 24 | 25 | [/Script/UnrealEd.UnrealEdEngine] 26 | TemplateMapInfos=(ThumbnailTexture=Texture2D'"/Engine/Maps/Templates/Thumbnails/Default.Default"',Map="/Engine/Maps/Templates/Template_Default") 27 | TemplateMapInfos=(ThumbnailTexture=Texture2D'"/Engine/Maps/Templates/Thumbnails/VR-Basic.VR-Basic"',Map="/Engine/Maps/Templates/VR-Basic") 28 | 29 | [/Script/AndroidPlatformEditor.AndroidSDKSettings] 30 | SDKPath=(Path="") 31 | NDKPath=(Path="") 32 | ANTPath=(Path="") 33 | JavaPath=(Path="") 34 | 35 | [/Script/UnrealEd.EditorEngine] 36 | FlipNormalMapGreenChannel=False 37 | 38 | [MagicLeapSettings] 39 | WindowMirrorMode=1 40 | 41 | 42 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/Windows/Game.ini: -------------------------------------------------------------------------------- 1 | [/Script/UnrealEd.ProjectPackagingSettings] 2 | BuildConfiguration=PPBC_Shipping 3 | Build=IfProjectHasCode 4 | StagingDirectory=(Path="D:/UE4_Projects_D/packed") 5 | ForDistribution=False 6 | IncludeDebugFiles=False 7 | BlueprintNativizationMethod=Disabled 8 | bIncludeNativizedAssetsInProjectGeneration=False 9 | bExcludeMonolithicEngineHeadersInNativizedCode=False 10 | bGenerateNoChunks=False 11 | bBuildHttpChunkInstallData=False 12 | HttpChunkInstallDataDirectory=(Path="") 13 | HttpChunkInstallDataVersion= 14 | IncludeAppLocalPrerequisites=False 15 | ApplocalPrerequisitesDirectory=(Path="") 16 | bCookAll=False 17 | bCookMapsOnly=False 18 | bCompressed=False 19 | bEncryptIniFiles=False 20 | bEncryptPakIndex=False 21 | bNativizeBlueprintAssets=False 22 | bNativizeOnlySelectedBlueprints=False 23 | 24 | 25 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/Windows/GameUserSettings.ini: -------------------------------------------------------------------------------- 1 | [/Script/Engine.GameUserSettings] 2 | bUseVSync=False 3 | bUseDynamicResolution=False 4 | ResolutionSizeX=1920 5 | ResolutionSizeY=1080 6 | LastUserConfirmedResolutionSizeX=1920 7 | LastUserConfirmedResolutionSizeY=1080 8 | WindowPosX=-1 9 | WindowPosY=-1 10 | FullscreenMode=1 11 | LastConfirmedFullscreenMode=1 12 | PreferredFullscreenMode=1 13 | Version=5 14 | AudioQualityLevel=0 15 | FrameRateLimit=0.000000 16 | DesiredScreenWidth=1280 17 | bUseDesiredScreenHeight=False 18 | DesiredScreenHeight=720 19 | LastRecommendedScreenWidth=-1.000000 20 | LastRecommendedScreenHeight=-1.000000 21 | LastCPUBenchmarkResult=-1.000000 22 | LastGPUBenchmarkResult=-1.000000 23 | LastGPUBenchmarkMultiplier=1.000000 24 | bUseHDRDisplayOutput=False 25 | HDRDisplayOutputNits=1000 26 | LastUserConfirmedDesiredScreenWidth=1280 27 | LastUserConfirmedDesiredScreenHeight=720 28 | 29 | 30 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/Windows/Hardware.ini: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/Windows/Input.ini: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/Windows/Lightmass.ini: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/Windows/OculusVR.ini: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/Windows/Paper2D.ini: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/Windows/PhysXVehicles.ini: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/Windows/ProfilerSettings.ini: -------------------------------------------------------------------------------- 1 | [Profiler.ProfilerOptions] 2 | bShowCoalescedViewModesInEventGraph=True 3 | 4 | 5 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/Windows/Scalability.ini: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/WorldState/1303193703.json: -------------------------------------------------------------------------------- 1 | { 2 | "Folders": 3 | { 4 | "RenderFX": 5 | { 6 | "bIsExpanded": true 7 | }, 8 | "Lighting": 9 | { 10 | "bIsExpanded": true 11 | }, 12 | "ArenaGeometry": 13 | { 14 | "bIsExpanded": true 15 | }, 16 | "ArenaGeometry/Arena": 17 | { 18 | "bIsExpanded": true 19 | } 20 | } 21 | } -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/WorldState/1733713856.json: -------------------------------------------------------------------------------- 1 | { 2 | "Folders": 3 | { 4 | "RenderFX": 5 | { 6 | "bIsExpanded": true 7 | }, 8 | "Lighting": 9 | { 10 | "bIsExpanded": true 11 | }, 12 | "ArenaGeometry": 13 | { 14 | "bIsExpanded": true 15 | }, 16 | "ArenaGeometry/Arena": 17 | { 18 | "bIsExpanded": true 19 | } 20 | } 21 | } -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/WorldState/1929619375.json: -------------------------------------------------------------------------------- 1 | { 2 | "Folders": 3 | { 4 | "RenderFX": 5 | { 6 | "bIsExpanded": true 7 | }, 8 | "Lighting": 9 | { 10 | "bIsExpanded": true 11 | }, 12 | "ArenaGeometry": 13 | { 14 | "bIsExpanded": true 15 | }, 16 | "ArenaGeometry/Arena": 17 | { 18 | "bIsExpanded": true 19 | } 20 | } 21 | } -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/WorldState/3046101629.json: -------------------------------------------------------------------------------- 1 | { 2 | "Folders": 3 | { 4 | } 5 | } -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/WorldState/3264693943.json: -------------------------------------------------------------------------------- 1 | { 2 | "Folders": 3 | { 4 | } 5 | } -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/WorldState/3393405467.json: -------------------------------------------------------------------------------- 1 | { 2 | "Folders": 3 | { 4 | "RenderFX": 5 | { 6 | "bIsExpanded": true 7 | }, 8 | "Lighting": 9 | { 10 | "bIsExpanded": true 11 | }, 12 | "ArenaGeometry": 13 | { 14 | "bIsExpanded": true 15 | }, 16 | "ArenaGeometry/Arena": 17 | { 18 | "bIsExpanded": true 19 | } 20 | } 21 | } -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/WorldState/366175216.json: -------------------------------------------------------------------------------- 1 | { 2 | "Folders": 3 | { 4 | "RenderFX": 5 | { 6 | "bIsExpanded": true 7 | }, 8 | "Lighting": 9 | { 10 | "bIsExpanded": true 11 | }, 12 | "ArenaGeometry": 13 | { 14 | "bIsExpanded": true 15 | }, 16 | "ArenaGeometry/Arena": 17 | { 18 | "bIsExpanded": true 19 | } 20 | } 21 | } -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/WorldState/3989747207.json: -------------------------------------------------------------------------------- 1 | { 2 | "Folders": 3 | { 4 | } 5 | } -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/WorldState/4090089142.json: -------------------------------------------------------------------------------- 1 | { 2 | "Folders": 3 | { 4 | "RenderFX": 5 | { 6 | "bIsExpanded": true 7 | }, 8 | "Lighting": 9 | { 10 | "bIsExpanded": true 11 | }, 12 | "ArenaGeometry": 13 | { 14 | "bIsExpanded": true 15 | }, 16 | "ArenaGeometry/Arena": 17 | { 18 | "bIsExpanded": true 19 | } 20 | } 21 | } -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/WorldState/4170781786.json: -------------------------------------------------------------------------------- 1 | { 2 | "Folders": 3 | { 4 | } 5 | } -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/WorldState/549335073.json: -------------------------------------------------------------------------------- 1 | { 2 | "Folders": 3 | { 4 | } 5 | } -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/WorldState/601541867.json: -------------------------------------------------------------------------------- 1 | { 2 | "Folders": 3 | { 4 | } 5 | } -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Config/WorldState/978104464.json: -------------------------------------------------------------------------------- 1 | { 2 | "Folders": 3 | { 4 | "RenderFX": 5 | { 6 | "bIsExpanded": true 7 | }, 8 | "Lighting": 9 | { 10 | "bIsExpanded": true 11 | }, 12 | "ArenaGeometry": 13 | { 14 | "bIsExpanded": true 15 | }, 16 | "ArenaGeometry/Arena": 17 | { 18 | "bIsExpanded": true 19 | } 20 | } 21 | } -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/Saved/Thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marvelmaster/UE4_Dynamic_Water_Project_V3/124ef82ff9e3f268d423a3ec78ccc19416ee437a/Reactive_Water_V3_4-20/Saved/Thumb.png -------------------------------------------------------------------------------- /Reactive_Water_V3_4-20/changelog_V3.01.txt: -------------------------------------------------------------------------------- 1 | V3.01 31.01.2019 2 | 3 | Small Bugfixes: 4 | - pixelation effect changed to integer variable 5 | - placed some is valid nodes in GlobalUpdater_BP and WaterBody_BP to avoid errors and low fps when there is no player0 6 | - disabled scenecapture when player0 is not valid to avoid low fps when player0 is not valid 7 | 8 | 9 | 10 | V3.0 27.01.2019 11 | 12 | New Features: 13 | 14 | - now 3 demo levels 15 | - Player Local Simulation (only 1 single plane) 16 | - automatic water interaction as long as actor and component has tag "water" or "waterlocal" 17 | - Water interaction cause waves in shape of object 18 | - Water Simulation can be tweaked to massive distances 19 | - massive performance improvements 20 | - splashes on shallow water (calculated by character_BP) 21 | - water splash color based on actor tag of water body (red, green, blue) 22 | - Impact at location Function/Blueprint added 23 | - Rain at location Function/Blueprint added 24 | - Particle Rain Blueprint added 25 | - tesselation by distance and falloff option 26 | - Particle interaction 27 | - now only what touches water surface causes waves (precise edge) 28 | - over water and under water touch offset 29 | - increased water surface precision 30 | - interactive Water Jet (Press N) 31 | - spawn dynamic objects (Press B) 32 | - fake buoyancy (needs to add collision channel "BuoyancySurface" in project settings!) 33 | - under water post Process volume 34 | - char arm rotation influenced by water level (calculated by character_BP) 35 | - character speed influenced by water level (calculated by character_BP) 36 | - World Space Tiling of water surface 37 | - tiling in water body settings 38 | - yaw rotation is now properly possible 39 | - debuging components and exposed options 40 | - Render Target resolution and capture resolutions is now editable 41 | - wave orientation can now be set to up or downwards 42 | - object idle speed variable 43 | - an activation box with offset options 44 | - wave noise reduction option 45 | - pixelation effect 46 | - local planar reflection (needs to be support global clip plane in project settings checked) 47 | - rain around player option 48 | - basic caustics 49 | - self caustics 50 | - grass is influenced by waves 51 | 52 | 53 | Bugfixes: 54 | 55 | - fixed black debug planes in editor 56 | - fixed collision happening out of waterbounds 57 | 58 | Known issues: 59 | 60 | - impact and rain at location Impact Powers are the same for impacts at the very same moment 61 | - on lower simulation distances combined with high damping value random waves might appear 62 | - tessellated impacts height is sometimes not visible infront of translucent materials 63 | 64 | 65 | 66 | 67 | 68 | V2.1: 69 | 04.12.2018 70 | 71 | 72 | Minor Bugfixes: 73 | 74 | - deleted unused variables 75 | - flipped calf and feet collision checkbox (now its correct) 76 | - decreased plane size in demo level for faster project startup 77 | 78 | 79 | V2: 80 | 21.10.2018 81 | 82 | New Features: 83 | - framerate independant simulation 84 | - support multiple water plane actors with different materials and settings possible 85 | - water plane indicators in editor 86 | - improved performance 87 | 88 | 89 | Performance: 90 | 91 | - deactivated translucentcy on planar reflection + 25%fps 92 | - deactivated dynamic shadows on planar reflection + 5%fps 93 | - Blueprint communication overhaul 94 | - new settings for performance (tick rates for location and simulation 95 | - adjustable water tile size 96 | 97 | 98 | Materials: 99 | 100 | - UV Tiling is working now (but only with odd numbers 1,3,5...) 101 | - better material layout 102 | - emmissive is now optional 103 | - material adjustments for proper color settings 104 | - new subcategories for material instances 105 | 106 | 107 | --------------------------------------------------------------------------------