├── .gitattributes ├── .gitignore ├── Content └── GlobalEnvironmentalSystem │ ├── Animations │ ├── ABP_IW_Manny.uasset │ └── Manny │ │ ├── BS_MM_WalkRun.uasset │ │ ├── MM_Fall_Loop.uasset │ │ ├── MM_Idle.uasset │ │ ├── MM_Jump.uasset │ │ ├── MM_Land.uasset │ │ ├── MM_Run_Fwd.uasset │ │ ├── MM_T_Pose.uasset │ │ ├── MM_Walk_Fwd.uasset │ │ └── MM_Walk_InPlace.uasset │ ├── Blueprints │ ├── BP-TestUDW.uasset │ ├── BP_GES.uasset │ ├── BP_IW_ThirdPersonCharacter.uasset │ ├── Functions │ │ └── GES_BP_Function_Library.uasset │ ├── GES_MainMenuWidget.uasset │ ├── Geometry │ │ ├── Icon_Arrow.uasset │ │ ├── Icon_Arrow_Test.uasset │ │ ├── Icon_Base.uasset │ │ └── Icon_Sock.uasset │ ├── Materials │ │ ├── MA_UI_Element.uasset │ │ └── MA_UI_Element_Inst.uasset │ ├── Spawn_Move_UDS_Radial_Storm.uasset │ └── ThirdPerson │ │ ├── Blueprints │ │ ├── BP_ThirdPersonCharacter.uasset │ │ └── BP_ThirdPersonGameMode.uasset │ │ ├── Input │ │ ├── Actions │ │ │ ├── IA_Fly.uasset │ │ │ ├── IA_Jump.uasset │ │ │ ├── IA_Look.uasset │ │ │ └── IA_Move.uasset │ │ └── IMC_Default.uasset │ │ └── Maps │ │ └── ThirdPersonMap.umap │ ├── Curves │ └── UpdateOCWavesTimeLine.uasset │ ├── Enum │ ├── GES_UDS_Weather_Display_Names.uasset │ └── Trigger_GES.uasset │ ├── FoliageHealthAndSeason │ └── MaterialFunctions │ │ ├── Foliage │ │ ├── MF_HealthSeason.uasset │ │ └── MF_Translucency.uasset │ │ └── Seasons │ │ ├── MF_Autumn.uasset │ │ ├── MF_AutumnColoring.uasset │ │ ├── MF_Winter.uasset │ │ └── MF_WinterWitheredLeaves.uasset │ ├── FoliageInteractionWindSystem │ ├── Blueprints │ │ ├── FIWS_Bending_Component.uasset │ │ ├── FIWS_GlobalUpdater.uasset │ │ └── ThirdPerson │ │ │ ├── Blueprints │ │ │ ├── BP_ThirdPersonCharacter.uasset │ │ │ └── BP_ThirdPersonGameMode.uasset │ │ │ ├── Input │ │ │ ├── Actions │ │ │ │ ├── IA_Jump.uasset │ │ │ │ ├── IA_Look.uasset │ │ │ │ └── IA_Move.uasset │ │ │ └── IMC_Default.uasset │ │ │ └── Maps │ │ │ └── ThirdPersonMap.umap │ ├── Materials │ │ └── MaterialFunctions │ │ │ ├── FIWS_AnimationShader.uasset │ │ │ ├── FIWS_Bending.uasset │ │ │ ├── FIWS_MultiBend.uasset │ │ │ ├── FIWS_SpeedTree_AnimationShader.uasset │ │ │ └── FIWS_WindAnimation.uasset │ └── Textures │ │ └── grassTextures │ │ └── PivPainterTextures │ │ ├── grass_01_01_PIV.uasset │ │ ├── grass_01_01_VEC.uasset │ │ ├── grass_01_02_PIV.uasset │ │ ├── grass_01_02_VEC.uasset │ │ ├── grass_01_03_PIV.uasset │ │ ├── grass_01_03_VEC.uasset │ │ ├── grass_01_04_PIV.uasset │ │ ├── grass_01_04_VEC.uasset │ │ ├── grass_01_05_PIV.uasset │ │ ├── grass_01_05_VEC.uasset │ │ ├── grass_01_06_PIV.uasset │ │ ├── grass_01_06_VEC.uasset │ │ ├── grass_01_07_PIV.uasset │ │ ├── grass_01_07_VEC.uasset │ │ ├── grass_01_08_PIV.uasset │ │ ├── grass_01_08_VEC.uasset │ │ ├── grass_01_09_PIV.uasset │ │ ├── grass_01_09_VEC.uasset │ │ ├── grass_02_01_PIV.uasset │ │ ├── grass_02_01_VEC.uasset │ │ ├── grass_02_02_PIV.uasset │ │ ├── grass_02_02_VEC.uasset │ │ ├── grass_02_03_PIV.uasset │ │ ├── grass_02_03_VEC.uasset │ │ ├── grass_02_04_PIV.uasset │ │ ├── grass_02_04_VEC.uasset │ │ ├── grass_02_05_PIV.uasset │ │ ├── grass_02_05_VEC.uasset │ │ ├── grass_02_06_PIV.uasset │ │ ├── grass_02_06_VEC.uasset │ │ ├── grass_02_07_PIV.uasset │ │ ├── grass_02_07_VEC.uasset │ │ ├── grass_02_08_PIV.uasset │ │ ├── grass_02_08_VEC.uasset │ │ ├── grass_02_09_PIV.uasset │ │ ├── grass_02_09_VEC.uasset │ │ ├── grass_03_01_PIV.uasset │ │ ├── grass_03_01_VEC.uasset │ │ ├── grass_03_02_PIV.uasset │ │ ├── grass_03_02_VEC.uasset │ │ ├── grass_03_03_PIV.uasset │ │ ├── grass_03_03_VEC.uasset │ │ ├── grass_03_04_PIV.uasset │ │ ├── grass_03_04_VEC.uasset │ │ ├── grass_03_05_PIV.uasset │ │ ├── grass_03_05_VEC.uasset │ │ ├── grass_03_06_PIV.uasset │ │ ├── grass_03_06_VEC.uasset │ │ ├── grass_03_07_PIV.uasset │ │ ├── grass_03_07_VEC.uasset │ │ ├── grass_03_08_PIV.uasset │ │ ├── grass_03_08_VEC.uasset │ │ ├── grass_03_09_PIV.uasset │ │ ├── grass_03_09_VEC.uasset │ │ ├── grass_04_01_PIV.uasset │ │ ├── grass_04_01_VEC.uasset │ │ ├── grass_04_02_PIV.uasset │ │ ├── grass_04_02_VEC.uasset │ │ ├── grass_04_03_PIV.uasset │ │ ├── grass_04_03_VEC.uasset │ │ ├── grass_04_04_PIV.uasset │ │ ├── grass_04_04_VEC.uasset │ │ ├── grass_05_01_PIV.uasset │ │ ├── grass_05_01_VEC.uasset │ │ ├── grass_05_02_PIV.uasset │ │ ├── grass_05_02_VEC.uasset │ │ ├── grass_05_03_PIV.uasset │ │ ├── grass_05_03_VEC.uasset │ │ ├── grass_05_04_PIV.uasset │ │ ├── grass_05_04_VEC.uasset │ │ ├── grass_05_05_PIV.uasset │ │ ├── grass_05_05_VEC.uasset │ │ ├── grass_05_06_PIV.uasset │ │ ├── grass_05_06_VEC.uasset │ │ ├── grass_05_07_PIV.uasset │ │ ├── grass_05_07_VEC.uasset │ │ ├── grass_06_01_PIV.uasset │ │ ├── grass_06_01_VEC.uasset │ │ ├── grass_06_02_PIV.uasset │ │ ├── grass_06_02_VEC.uasset │ │ ├── grass_06_03_PIV.uasset │ │ ├── grass_06_03_VEC.uasset │ │ ├── grass_06_04_PIV.uasset │ │ ├── grass_06_04_VEC.uasset │ │ ├── grass_06_05_PIV.uasset │ │ ├── grass_06_05_VEC.uasset │ │ ├── grass_06_06_PIV.uasset │ │ ├── grass_06_06_VEC.uasset │ │ ├── grass_07_01_PIV.uasset │ │ ├── grass_07_01_VEC.uasset │ │ ├── grass_07_02_PIV.uasset │ │ ├── grass_07_02_VEC.uasset │ │ ├── grass_07_03_PIV.uasset │ │ ├── grass_07_03_VEC.uasset │ │ ├── grass_07_04_PIV.uasset │ │ ├── grass_07_04_VEC.uasset │ │ ├── grass_08_01_PIV.uasset │ │ ├── grass_08_01_VEC.uasset │ │ ├── grass_08_02_PIV.uasset │ │ ├── grass_08_02_VEC.uasset │ │ ├── grass_08_03_PIV.uasset │ │ ├── grass_08_03_VEC.uasset │ │ ├── grass_08_04_PIV.uasset │ │ ├── grass_08_04_VEC.uasset │ │ ├── grass_09_01_PIV.uasset │ │ ├── grass_09_01_VEC.uasset │ │ ├── grass_09_02_PIV.uasset │ │ ├── grass_09_02_VEC.uasset │ │ ├── grass_09_03_PIV.uasset │ │ ├── grass_09_03_VEC.uasset │ │ ├── grass_09_04_PIV.uasset │ │ ├── grass_09_04_VEC.uasset │ │ ├── grass_09_05_PIV.uasset │ │ ├── grass_09_05_VEC.uasset │ │ ├── grass_09_06_PIV.uasset │ │ ├── grass_09_06_VEC.uasset │ │ ├── grass_09_07_PIV.uasset │ │ ├── grass_09_07_VEC.uasset │ │ ├── grass_09_08_PIV.uasset │ │ ├── grass_09_08_VEC.uasset │ │ ├── grass_09_09_PIV.uasset │ │ ├── grass_09_09_VEC.uasset │ │ ├── grass_09_10_PIV.uasset │ │ ├── grass_09_10_VEC.uasset │ │ ├── grass_10_01_PIV.uasset │ │ ├── grass_10_01_VEC.uasset │ │ ├── grass_10_02_PIV.uasset │ │ ├── grass_10_02_VEC.uasset │ │ ├── grass_10_03_PIV.uasset │ │ ├── grass_10_03_VEC.uasset │ │ ├── grass_10_04_PIV.uasset │ │ ├── grass_10_04_VEC.uasset │ │ ├── grass_11_01_PIV.uasset │ │ ├── grass_11_01_VEC.uasset │ │ ├── grass_11_02_PIV.uasset │ │ ├── grass_11_02_VEC.uasset │ │ ├── grass_11_03_PIV.uasset │ │ ├── grass_11_03_VEC.uasset │ │ ├── grass_11_04_PIV.uasset │ │ ├── grass_11_04_VEC.uasset │ │ ├── grass_11_05_PIV.uasset │ │ ├── grass_11_05_VEC.uasset │ │ ├── grass_12_01_PIV.uasset │ │ ├── grass_12_01_VEC.uasset │ │ ├── grass_12_02_PIV.uasset │ │ ├── grass_12_02_VEC.uasset │ │ ├── grass_12_03_PIV.uasset │ │ ├── grass_12_03_VEC.uasset │ │ ├── grass_12_04_PIV.uasset │ │ ├── grass_12_04_VEC.uasset │ │ ├── grass_12_05_PIV.uasset │ │ ├── grass_12_05_VEC.uasset │ │ ├── grass_12_06_PIV.uasset │ │ ├── grass_12_06_VEC.uasset │ │ ├── grass_12_07_PIV.uasset │ │ ├── grass_12_07_VEC.uasset │ │ ├── grass_12_08_PIV.uasset │ │ ├── grass_12_08_VEC.uasset │ │ ├── grass_12_09_PIV.uasset │ │ ├── grass_12_09_VEC.uasset │ │ ├── grass_12_10_PIV.uasset │ │ ├── grass_12_10_VEC.uasset │ │ ├── grass_12_11_PIV.uasset │ │ ├── grass_12_11_VEC.uasset │ │ ├── grass_12_12_PIV.uasset │ │ ├── grass_12_12_VEC.uasset │ │ ├── lowGrass_01_02_PIV.uasset │ │ ├── lowGrass_02_01_PIV.uasset │ │ ├── lowGrass_02_02_PIV.uasset │ │ ├── lowGrass_03_01_PIV.uasset │ │ ├── lowGrass_03_02_PIV.uasset │ │ ├── lowGrass_03_03_PIV.uasset │ │ ├── lowGrass_04_01_PIV.uasset │ │ ├── lowGrass_04_02_PIV.uasset │ │ ├── lowGrass_04_03_PIV.uasset │ │ ├── lowGrass_04_04_PIV.uasset │ │ ├── lowGrass_04_05_PIV.uasset │ │ ├── lowGrass_04_06_PIV.uasset │ │ ├── lowGrass_04_07_PIV.uasset │ │ ├── lowGrass_05_01_PIV.uasset │ │ ├── lowGrass_05_02_PIV.uasset │ │ ├── lowGrass_06_01_PIV.uasset │ │ ├── lowGrass_06_02_PIV.uasset │ │ ├── lowGrass_07_01_PIV.uasset │ │ ├── lowGrass_07_02_PIV.uasset │ │ ├── lowGrass_07_03_PIV.uasset │ │ ├── lowGrass_08_01_PIV.uasset │ │ ├── lowGrass_08_02_PIV.uasset │ │ ├── lowGrass_09_01_PIV.uasset │ │ ├── lowGrass_09_02_PIV.uasset │ │ ├── lowGrass_10_01_PIV.uasset │ │ ├── lowGrass_10_02_PIV.uasset │ │ └── lowGrass_VEC.uasset │ ├── Integrations │ ├── AmbientWindSystem │ │ ├── BPFunctions │ │ │ └── BF_GES_AmbientWindSystem.uasset │ │ ├── GES_AWS_Wind_Speed_Struct.uasset │ │ └── WindSystem │ │ │ └── Materials │ │ │ └── _Shaders │ │ │ └── M_BR_AN_1.uasset │ ├── Brushify │ │ ├── BPFunctions │ │ │ └── BF_GES_Brushify.uasset │ │ ├── GES_Brushify_Wind_Speed_Struct.uasset │ │ └── Materials │ │ │ └── Wind │ │ │ ├── MF_GlobalWind.uasset │ │ │ └── MPC_Wind.uasset │ ├── FoliageHealthAndSeason │ │ └── BPFunctions │ │ │ └── BP_GES_FoliageHealthAndSeason.uasset │ ├── FoliageInteractionWindSystem │ │ └── BPFunctions │ │ │ └── BF_GES_FoliageInteractionWindSystem.uasset │ ├── GroomHair │ │ └── BPFunctions │ │ │ └── BF_GES_GroomHair.uasset │ ├── Lakeology │ │ ├── BPFunctions │ │ │ └── BP_GES_Lakeology.uasset │ │ └── GES_Lakeology_Wind_Speed_Struct.uasset │ ├── Mae │ │ ├── BPFunctions │ │ │ └── BP_GES_MAE.uasset │ │ └── GES_MAE_Wind_Speed_Struct.uasset │ ├── Mawi │ │ ├── BPFunctions │ │ │ └── BP_GES_Mawi.uasset │ │ └── GES_Mawi_Wind_Speed_Struct.uasset │ ├── Megascans │ │ ├── BPFunctions │ │ │ ├── BF_GES_MS.uasset │ │ │ └── BF_GES_MS_Health_Seasons.uasset │ │ ├── Fab │ │ │ └── Content │ │ │ │ └── Materials │ │ │ │ ├── Standard │ │ │ │ ├── M_MS_Base.uasset │ │ │ │ ├── M_MS_Base_Fuzz.uasset │ │ │ │ ├── M_MS_Billboard.uasset │ │ │ │ ├── M_MS_Foliage.uasset │ │ │ │ ├── M_MS_Glass.uasset │ │ │ │ └── M_MS_Srf.uasset │ │ │ │ └── VT │ │ │ │ ├── M_MS_Base_Fuzz_VT.uasset │ │ │ │ ├── M_MS_Base_VT.uasset │ │ │ │ ├── M_MS_Billboard_VT.uasset │ │ │ │ ├── M_MS_Foliage_VT.uasset │ │ │ │ ├── M_MS_Glass_VT.uasset │ │ │ │ └── M_MS_Srf_VT.uasset │ │ ├── GES_MS_Wind_Speed_Struct.uasset │ │ └── MSPresets │ │ │ ├── MS_Foliage_Material │ │ │ ├── MasterMaterials │ │ │ │ ├── MA_Foliage.uasset │ │ │ │ └── MA_Impostor_SimpleOffset_MS.uasset │ │ │ └── MaterialFunctions │ │ │ │ └── Foliage │ │ │ │ ├── MF_AdvancedWind.uasset │ │ │ │ ├── MF_AdvancedWind_Level.uasset │ │ │ │ ├── MF_DistanceBasedOpacity.uasset │ │ │ │ ├── MF_DistanceBasedOpacity_UDW.uasset │ │ │ │ ├── MF_HealthSeason.uasset │ │ │ │ ├── MF_HealthSeason_UDW.uasset │ │ │ │ ├── MF_LightInfluenceColorVariation.uasset │ │ │ │ ├── MF_LightInfluenceColorVariation_UDW.uasset │ │ │ │ ├── MF_SimpleWind.uasset │ │ │ │ ├── MF_TwoSidedRoughness.uasset │ │ │ │ ├── MF_TwoSidedRoughness_UDW.uasset │ │ │ │ ├── MF_TwoSided_Decoration.uasset │ │ │ │ ├── MF_TwoSided_Decoration_UDW.uasset │ │ │ │ ├── MF_TwoSided_Leaves.uasset │ │ │ │ ├── MF_TwoSided_Leaves_UDW.uasset │ │ │ │ ├── MF_WindGust.uasset │ │ │ │ ├── MF_WorldspaceColorVariation.uasset │ │ │ │ ├── MF_adjustTwoSidedNormal.uasset │ │ │ │ ├── MF_adjustTwoSidedNormal_UDW.uasset │ │ │ │ ├── MF_generateTranslucency.uasset │ │ │ │ ├── MF_generateTwoSidedSpecular.uasset │ │ │ │ └── MF_generateTwoSidedSpecular_UDW.uasset │ │ │ ├── M_MS_Billboard_Material │ │ │ └── M_MS_Billboard_Material.uasset │ │ │ ├── M_MS_Default_Fuzz_Material │ │ │ └── M_MS_Default_Fuzz_Material.uasset │ │ │ ├── M_MS_Default_Fuzz_Material_VT │ │ │ └── M_MS_Default_Fuzz_Material_VT.uasset │ │ │ ├── M_MS_Default_Material │ │ │ └── M_MS_Default_Material.uasset │ │ │ ├── M_MS_Default_Material_VT │ │ │ └── M_MS_Default_Material_VT.uasset │ │ │ ├── M_MS_Foliage_Material │ │ │ ├── Functions │ │ │ │ └── MF_Translucency.uasset │ │ │ ├── MF_Translucency.uasset │ │ │ └── M_MS_Foliage_Material.uasset │ │ │ ├── M_MS_Surface_Material │ │ │ └── M_MS_Surface_Material.uasset │ │ │ └── M_MS_Surface_Material_VT │ │ │ └── M_MS_Surface_Material_VT.uasset │ ├── Niagara │ │ ├── BPFunctions │ │ │ └── BF_GES_Niagara.uasset │ │ └── ExampleNiagaraSystem.uasset │ ├── Oceanology │ │ ├── BPFunctions │ │ │ └── BP_GES_Oceanology.uasset │ │ └── GES_Oceanology_Wind_Speed_Struct.uasset │ ├── OceanologyNextGen │ │ ├── BPFunctions │ │ │ ├── BP_GES_LakeologyNextGen.uasset │ │ │ └── BP_GES_OceanologyNextGen.uasset │ │ ├── GES_LakeologyNextGen_Wind_Speed_Struct.uasset │ │ └── GES_OceanologyNextGen_Wind_Speed_Struct.uasset │ ├── Particles_Wind_Control_System │ │ ├── BPFunctions │ │ │ └── BP_GES_Particles_Wind_Control_System.uasset │ │ └── GES_Particle_Wind_Speed_Struct.uasset │ ├── ProjectNature │ │ ├── BPFunctions │ │ │ └── BF_GES_ProjectNature.uasset │ │ ├── GES_PN_Wind_Speed_Struct.uasset │ │ ├── Materials │ │ │ └── MaterialFunctions │ │ │ │ ├── PN_AnimationShader.uasset │ │ │ │ ├── PN_Bending.uasset │ │ │ │ ├── PN_MultiBend.uasset │ │ │ │ └── PN_WindAnimation.uasset │ │ ├── PN_GrassLibrary │ │ │ └── Materials │ │ │ │ └── grassMaterials │ │ │ │ └── MA_Grass.uasset │ │ └── PN_interactiveSpruceForest │ │ │ └── Materials │ │ │ └── MasterMaterials │ │ │ ├── MA_Imposter.uasset │ │ │ └── MA_Summer.uasset │ ├── Reference │ │ ├── BPFunctions │ │ │ └── BF_GES_Reference.uasset │ │ └── GES_Ref_Wind_Speed_Struct.uasset │ ├── Riverology │ │ ├── BPFunctions │ │ │ └── BP_GES_Riverology.uasset │ │ └── GES_Riverology_Wind_Speed_Struct.uasset │ ├── SimpleWind │ │ ├── BPFunctions │ │ │ └── BF_GES_SimpleWind.uasset │ │ ├── GES_SimpleWind_Wind_Speed_Struct.uasset │ │ └── MPC_SimpleWind.uasset │ ├── SpeedTree │ │ ├── BPFunctions │ │ │ └── BF_GES_SpeedTree.uasset │ │ ├── GES_ST_Wind_Speed_Struct.uasset │ │ ├── SpeedTreeBillboardMaster.uasset │ │ └── SpeedTreeMaster.uasset │ ├── UDS │ │ ├── BPFunctions │ │ │ └── BF_GES_UDS.uasset │ │ └── UltraDynamicSky │ │ │ └── Blueprints │ │ │ └── Enum │ │ │ └── UDS_Weather_Display_Names.uasset │ ├── UEWater │ │ ├── BPFunctions │ │ │ └── BF_GES_UE_Water.uasset │ │ └── Waves │ │ │ ├── GerstnerWaves_Lake.uasset │ │ │ ├── GerstnerWaves_Ocean.uasset │ │ │ ├── Lake_Blizzard.uasset │ │ │ ├── Lake_Clear_Skies.uasset │ │ │ ├── Lake_Dust_Storm.uasset │ │ │ ├── Lake_Thunderstorm.uasset │ │ │ ├── Ocean_Clear_Skies.uasset │ │ │ └── Ocean_Thunderstorm.uasset │ └── WindDirectionalSource │ │ └── BPFunctions │ │ └── BF_GES_WindDirectionalSource.uasset │ ├── MaterialFunction │ ├── MF_ApplyWetnessSnowDustUDW.uasset │ ├── MF_GES_TextureBombingCheap.uasset │ └── MF_UDW_DLWE.uasset │ ├── MaterialParameterCollection │ ├── MPC_GES.uasset │ └── NPC_GES.uasset │ ├── OC_UDS_Integration │ ├── M_Oceanology_Far_Inst_UDS.uasset │ ├── M_Oceanology_Inst_UDS.uasset │ ├── M_Oceanology_UDS.uasset │ └── Volumetric_Cloud_Shadows_OC.uasset │ ├── Structs │ └── UDS_Weather_Display_Name_Struct.uasset │ └── Textures │ └── T_Voronoi_Perturbed_4k.uasset ├── LICENSE ├── Plugins └── UnrealWaterLibrary │ ├── Binaries │ └── Win64 │ │ ├── UnrealEditor-WaterLibrary.dll │ │ ├── UnrealEditor-WaterLibrary.exp │ │ └── UnrealEditor.modules │ ├── LICENSE │ ├── README.md │ ├── Source │ └── WaterLibrary │ │ ├── Private │ │ ├── WaterLibrary.cpp │ │ └── WaterLibraryBP.cpp │ │ ├── Public │ │ ├── WaterLibrary.h │ │ └── WaterLibraryBP.h │ │ └── WaterLibrary.Build.cs │ └── WaterLibrary.uplugin └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Visual Studio 2015 user specific files 2 | .vs/ 3 | .idea/ 4 | 5 | # Compiled Object files 6 | *.slo 7 | *.lo 8 | *.o 9 | *.obj 10 | 11 | # Precompiled Headers 12 | *.gch 13 | *.pch 14 | 15 | # Compiled Dynamic libraries 16 | *.so 17 | *.dylib 18 | 19 | 20 | # Fortran module files 21 | *.mod 22 | 23 | # Compiled Static libraries 24 | *.lai 25 | *.la 26 | *.a 27 | *.lib 28 | 29 | # Executables 30 | *.exe 31 | *.out 32 | *.app 33 | *.ipa 34 | 35 | # These project files can be generated by the engine 36 | *.xcodeproj 37 | *.xcworkspace 38 | *.sln 39 | *.suo 40 | *.opensdf 41 | *.sdf 42 | *.VC.db 43 | *.VC.opendb 44 | 45 | # Precompiled Assets 46 | SourceArt/**/*.png 47 | SourceArt/**/*.tga 48 | 49 | # Binary Files 50 | Binaries/* 51 | 52 | 53 | # Builds 54 | Build/* 55 | 56 | # Whitelist PakBlacklist-.txt files 57 | !Build/*/ 58 | Build/*/** 59 | !Build/*/PakBlacklist*.txt 60 | 61 | # Don't ignore icon files in Build 62 | !Build/**/*.ico 63 | 64 | # Built data for maps 65 | *_BuiltData.uasset 66 | 67 | # Configuration files generated by the Editor 68 | Saved/* 69 | 70 | # Compiled source files for the engine to use 71 | Intermediate/* 72 | 73 | # Cache files for the editor to use 74 | DerivedDataCache/* 75 | 76 | #IDE junk 77 | .idea/* 78 | .vsconfig 79 | -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Animations/ABP_IW_Manny.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Animations/ABP_IW_Manny.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Animations/Manny/BS_MM_WalkRun.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Animations/Manny/BS_MM_WalkRun.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Animations/Manny/MM_Fall_Loop.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Animations/Manny/MM_Fall_Loop.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Animations/Manny/MM_Idle.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Animations/Manny/MM_Idle.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Animations/Manny/MM_Jump.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Animations/Manny/MM_Jump.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Animations/Manny/MM_Land.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Animations/Manny/MM_Land.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Animations/Manny/MM_Run_Fwd.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Animations/Manny/MM_Run_Fwd.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Animations/Manny/MM_T_Pose.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Animations/Manny/MM_T_Pose.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Animations/Manny/MM_Walk_Fwd.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Animations/Manny/MM_Walk_Fwd.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Animations/Manny/MM_Walk_InPlace.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Animations/Manny/MM_Walk_InPlace.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Blueprints/BP-TestUDW.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Blueprints/BP-TestUDW.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Blueprints/BP_GES.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Blueprints/BP_GES.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Blueprints/BP_IW_ThirdPersonCharacter.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Blueprints/BP_IW_ThirdPersonCharacter.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Blueprints/Functions/GES_BP_Function_Library.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Blueprints/Functions/GES_BP_Function_Library.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Blueprints/GES_MainMenuWidget.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Blueprints/GES_MainMenuWidget.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Blueprints/Geometry/Icon_Arrow.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Blueprints/Geometry/Icon_Arrow.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Blueprints/Geometry/Icon_Arrow_Test.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Blueprints/Geometry/Icon_Arrow_Test.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Blueprints/Geometry/Icon_Base.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Blueprints/Geometry/Icon_Base.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Blueprints/Geometry/Icon_Sock.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Blueprints/Geometry/Icon_Sock.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Blueprints/Materials/MA_UI_Element.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Blueprints/Materials/MA_UI_Element.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Blueprints/Materials/MA_UI_Element_Inst.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Blueprints/Materials/MA_UI_Element_Inst.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Blueprints/Spawn_Move_UDS_Radial_Storm.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Blueprints/Spawn_Move_UDS_Radial_Storm.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Blueprints/ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Blueprints/ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Blueprints/ThirdPerson/Blueprints/BP_ThirdPersonGameMode.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Blueprints/ThirdPerson/Blueprints/BP_ThirdPersonGameMode.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Blueprints/ThirdPerson/Input/Actions/IA_Fly.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Blueprints/ThirdPerson/Input/Actions/IA_Fly.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Blueprints/ThirdPerson/Input/Actions/IA_Jump.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Blueprints/ThirdPerson/Input/Actions/IA_Jump.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Blueprints/ThirdPerson/Input/Actions/IA_Look.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Blueprints/ThirdPerson/Input/Actions/IA_Look.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Blueprints/ThirdPerson/Input/Actions/IA_Move.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Blueprints/ThirdPerson/Input/Actions/IA_Move.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Blueprints/ThirdPerson/Input/IMC_Default.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Blueprints/ThirdPerson/Input/IMC_Default.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Blueprints/ThirdPerson/Maps/ThirdPersonMap.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Blueprints/ThirdPerson/Maps/ThirdPersonMap.umap -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Curves/UpdateOCWavesTimeLine.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Curves/UpdateOCWavesTimeLine.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Enum/GES_UDS_Weather_Display_Names.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Enum/GES_UDS_Weather_Display_Names.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Enum/Trigger_GES.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Enum/Trigger_GES.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageHealthAndSeason/MaterialFunctions/Foliage/MF_HealthSeason.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageHealthAndSeason/MaterialFunctions/Foliage/MF_HealthSeason.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageHealthAndSeason/MaterialFunctions/Foliage/MF_Translucency.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageHealthAndSeason/MaterialFunctions/Foliage/MF_Translucency.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageHealthAndSeason/MaterialFunctions/Seasons/MF_Autumn.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageHealthAndSeason/MaterialFunctions/Seasons/MF_Autumn.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageHealthAndSeason/MaterialFunctions/Seasons/MF_AutumnColoring.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageHealthAndSeason/MaterialFunctions/Seasons/MF_AutumnColoring.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageHealthAndSeason/MaterialFunctions/Seasons/MF_Winter.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageHealthAndSeason/MaterialFunctions/Seasons/MF_Winter.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageHealthAndSeason/MaterialFunctions/Seasons/MF_WinterWitheredLeaves.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageHealthAndSeason/MaterialFunctions/Seasons/MF_WinterWitheredLeaves.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Blueprints/FIWS_Bending_Component.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Blueprints/FIWS_Bending_Component.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Blueprints/FIWS_GlobalUpdater.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Blueprints/FIWS_GlobalUpdater.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Blueprints/ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Blueprints/ThirdPerson/Blueprints/BP_ThirdPersonCharacter.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Blueprints/ThirdPerson/Blueprints/BP_ThirdPersonGameMode.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Blueprints/ThirdPerson/Blueprints/BP_ThirdPersonGameMode.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Blueprints/ThirdPerson/Input/Actions/IA_Jump.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Blueprints/ThirdPerson/Input/Actions/IA_Jump.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Blueprints/ThirdPerson/Input/Actions/IA_Look.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Blueprints/ThirdPerson/Input/Actions/IA_Look.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Blueprints/ThirdPerson/Input/Actions/IA_Move.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Blueprints/ThirdPerson/Input/Actions/IA_Move.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Blueprints/ThirdPerson/Input/IMC_Default.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Blueprints/ThirdPerson/Input/IMC_Default.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Blueprints/ThirdPerson/Maps/ThirdPersonMap.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Blueprints/ThirdPerson/Maps/ThirdPersonMap.umap -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Materials/MaterialFunctions/FIWS_AnimationShader.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Materials/MaterialFunctions/FIWS_AnimationShader.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Materials/MaterialFunctions/FIWS_Bending.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Materials/MaterialFunctions/FIWS_Bending.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Materials/MaterialFunctions/FIWS_MultiBend.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Materials/MaterialFunctions/FIWS_MultiBend.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Materials/MaterialFunctions/FIWS_SpeedTree_AnimationShader.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Materials/MaterialFunctions/FIWS_SpeedTree_AnimationShader.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Materials/MaterialFunctions/FIWS_WindAnimation.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Materials/MaterialFunctions/FIWS_WindAnimation.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_01_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_01_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_01_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_01_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_02_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_02_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_02_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_02_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_03_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_03_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_03_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_03_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_04_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_04_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_04_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_04_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_05_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_05_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_05_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_05_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_06_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_06_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_06_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_06_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_07_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_07_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_07_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_07_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_08_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_08_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_08_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_08_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_09_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_09_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_09_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_01_09_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_01_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_01_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_01_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_01_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_02_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_02_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_02_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_02_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_03_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_03_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_03_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_03_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_04_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_04_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_04_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_04_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_05_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_05_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_05_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_05_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_06_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_06_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_06_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_06_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_07_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_07_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_07_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_07_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_08_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_08_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_08_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_08_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_09_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_09_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_09_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_02_09_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_01_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_01_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_01_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_01_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_02_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_02_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_02_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_02_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_03_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_03_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_03_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_03_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_04_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_04_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_04_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_04_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_05_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_05_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_05_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_05_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_06_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_06_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_06_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_06_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_07_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_07_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_07_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_07_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_08_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_08_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_08_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_08_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_09_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_09_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_09_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_03_09_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_04_01_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_04_01_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_04_01_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_04_01_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_04_02_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_04_02_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_04_02_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_04_02_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_04_03_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_04_03_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_04_03_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_04_03_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_04_04_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_04_04_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_04_04_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_04_04_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_05_01_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_05_01_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_05_01_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_05_01_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_05_02_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_05_02_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_05_02_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_05_02_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_05_03_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_05_03_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_05_03_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_05_03_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_05_04_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_05_04_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_05_04_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_05_04_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_05_05_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_05_05_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_05_05_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_05_05_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_05_06_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_05_06_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_05_06_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_05_06_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_05_07_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_05_07_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_05_07_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_05_07_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_06_01_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_06_01_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_06_01_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_06_01_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_06_02_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_06_02_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_06_02_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_06_02_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_06_03_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_06_03_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_06_03_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_06_03_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_06_04_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_06_04_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_06_04_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_06_04_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_06_05_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_06_05_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_06_05_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_06_05_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_06_06_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_06_06_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_06_06_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_06_06_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_07_01_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_07_01_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_07_01_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_07_01_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_07_02_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_07_02_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_07_02_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_07_02_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_07_03_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_07_03_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_07_03_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_07_03_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_07_04_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_07_04_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_07_04_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_07_04_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_08_01_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_08_01_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_08_01_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_08_01_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_08_02_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_08_02_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_08_02_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_08_02_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_08_03_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_08_03_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_08_03_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_08_03_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_08_04_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_08_04_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_08_04_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_08_04_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_01_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_01_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_01_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_01_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_02_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_02_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_02_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_02_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_03_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_03_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_03_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_03_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_04_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_04_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_04_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_04_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_05_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_05_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_05_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_05_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_06_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_06_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_06_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_06_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_07_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_07_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_07_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_07_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_08_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_08_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_08_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_08_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_09_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_09_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_09_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_09_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_10_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_10_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_10_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_09_10_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_10_01_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_10_01_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_10_01_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_10_01_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_10_02_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_10_02_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_10_02_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_10_02_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_10_03_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_10_03_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_10_03_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_10_03_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_10_04_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_10_04_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_10_04_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_10_04_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_11_01_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_11_01_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_11_01_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_11_01_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_11_02_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_11_02_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_11_02_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_11_02_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_11_03_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_11_03_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_11_03_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_11_03_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_11_04_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_11_04_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_11_04_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_11_04_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_11_05_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_11_05_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_11_05_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_11_05_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_01_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_01_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_01_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_01_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_02_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_02_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_02_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_02_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_03_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_03_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_03_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_03_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_04_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_04_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_04_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_04_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_05_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_05_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_05_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_05_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_06_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_06_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_06_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_06_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_07_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_07_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_07_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_07_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_08_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_08_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_08_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_08_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_09_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_09_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_09_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_09_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_10_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_10_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_10_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_10_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_11_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_11_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_11_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_11_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_12_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_12_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_12_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/grass_12_12_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_01_02_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_01_02_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_02_01_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_02_01_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_02_02_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_02_02_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_03_01_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_03_01_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_03_02_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_03_02_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_03_03_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_03_03_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_04_01_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_04_01_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_04_02_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_04_02_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_04_03_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_04_03_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_04_04_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_04_04_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_04_05_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_04_05_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_04_06_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_04_06_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_04_07_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_04_07_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_05_01_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_05_01_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_05_02_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_05_02_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_06_01_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_06_01_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_06_02_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_06_02_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_07_01_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_07_01_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_07_02_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_07_02_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_07_03_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_07_03_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_08_01_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_08_01_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_08_02_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_08_02_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_09_01_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_09_01_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_09_02_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_09_02_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_10_01_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_10_01_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_10_02_PIV.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_10_02_PIV.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_VEC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/FoliageInteractionWindSystem/Textures/grassTextures/PivPainterTextures/lowGrass_VEC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/AmbientWindSystem/BPFunctions/BF_GES_AmbientWindSystem.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/AmbientWindSystem/BPFunctions/BF_GES_AmbientWindSystem.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/AmbientWindSystem/GES_AWS_Wind_Speed_Struct.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/AmbientWindSystem/GES_AWS_Wind_Speed_Struct.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/AmbientWindSystem/WindSystem/Materials/_Shaders/M_BR_AN_1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/AmbientWindSystem/WindSystem/Materials/_Shaders/M_BR_AN_1.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Brushify/BPFunctions/BF_GES_Brushify.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Brushify/BPFunctions/BF_GES_Brushify.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Brushify/GES_Brushify_Wind_Speed_Struct.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Brushify/GES_Brushify_Wind_Speed_Struct.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Brushify/Materials/Wind/MF_GlobalWind.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Brushify/Materials/Wind/MF_GlobalWind.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Brushify/Materials/Wind/MPC_Wind.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Brushify/Materials/Wind/MPC_Wind.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/FoliageHealthAndSeason/BPFunctions/BP_GES_FoliageHealthAndSeason.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/FoliageHealthAndSeason/BPFunctions/BP_GES_FoliageHealthAndSeason.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/FoliageInteractionWindSystem/BPFunctions/BF_GES_FoliageInteractionWindSystem.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/FoliageInteractionWindSystem/BPFunctions/BF_GES_FoliageInteractionWindSystem.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/GroomHair/BPFunctions/BF_GES_GroomHair.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/GroomHair/BPFunctions/BF_GES_GroomHair.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Lakeology/BPFunctions/BP_GES_Lakeology.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Lakeology/BPFunctions/BP_GES_Lakeology.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Lakeology/GES_Lakeology_Wind_Speed_Struct.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Lakeology/GES_Lakeology_Wind_Speed_Struct.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Mae/BPFunctions/BP_GES_MAE.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Mae/BPFunctions/BP_GES_MAE.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Mae/GES_MAE_Wind_Speed_Struct.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Mae/GES_MAE_Wind_Speed_Struct.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Mawi/BPFunctions/BP_GES_Mawi.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Mawi/BPFunctions/BP_GES_Mawi.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Mawi/GES_Mawi_Wind_Speed_Struct.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Mawi/GES_Mawi_Wind_Speed_Struct.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/BPFunctions/BF_GES_MS.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/BPFunctions/BF_GES_MS.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/BPFunctions/BF_GES_MS_Health_Seasons.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/BPFunctions/BF_GES_MS_Health_Seasons.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/Fab/Content/Materials/Standard/M_MS_Base.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/Fab/Content/Materials/Standard/M_MS_Base.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/Fab/Content/Materials/Standard/M_MS_Base_Fuzz.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/Fab/Content/Materials/Standard/M_MS_Base_Fuzz.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/Fab/Content/Materials/Standard/M_MS_Billboard.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/Fab/Content/Materials/Standard/M_MS_Billboard.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/Fab/Content/Materials/Standard/M_MS_Foliage.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/Fab/Content/Materials/Standard/M_MS_Foliage.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/Fab/Content/Materials/Standard/M_MS_Glass.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/Fab/Content/Materials/Standard/M_MS_Glass.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/Fab/Content/Materials/Standard/M_MS_Srf.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/Fab/Content/Materials/Standard/M_MS_Srf.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/Fab/Content/Materials/VT/M_MS_Base_Fuzz_VT.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/Fab/Content/Materials/VT/M_MS_Base_Fuzz_VT.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/Fab/Content/Materials/VT/M_MS_Base_VT.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/Fab/Content/Materials/VT/M_MS_Base_VT.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/Fab/Content/Materials/VT/M_MS_Billboard_VT.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/Fab/Content/Materials/VT/M_MS_Billboard_VT.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/Fab/Content/Materials/VT/M_MS_Foliage_VT.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/Fab/Content/Materials/VT/M_MS_Foliage_VT.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/Fab/Content/Materials/VT/M_MS_Glass_VT.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/Fab/Content/Materials/VT/M_MS_Glass_VT.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/Fab/Content/Materials/VT/M_MS_Srf_VT.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/Fab/Content/Materials/VT/M_MS_Srf_VT.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/GES_MS_Wind_Speed_Struct.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/GES_MS_Wind_Speed_Struct.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MasterMaterials/MA_Foliage.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MasterMaterials/MA_Foliage.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MasterMaterials/MA_Impostor_SimpleOffset_MS.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MasterMaterials/MA_Impostor_SimpleOffset_MS.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_AdvancedWind.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_AdvancedWind.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_AdvancedWind_Level.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_AdvancedWind_Level.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_DistanceBasedOpacity.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_DistanceBasedOpacity.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_DistanceBasedOpacity_UDW.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_DistanceBasedOpacity_UDW.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_HealthSeason.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_HealthSeason.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_HealthSeason_UDW.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_HealthSeason_UDW.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_LightInfluenceColorVariation.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_LightInfluenceColorVariation.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_LightInfluenceColorVariation_UDW.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_LightInfluenceColorVariation_UDW.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_SimpleWind.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_SimpleWind.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_TwoSidedRoughness.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_TwoSidedRoughness.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_TwoSidedRoughness_UDW.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_TwoSidedRoughness_UDW.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_TwoSided_Decoration.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_TwoSided_Decoration.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_TwoSided_Decoration_UDW.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_TwoSided_Decoration_UDW.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_TwoSided_Leaves.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_TwoSided_Leaves.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_TwoSided_Leaves_UDW.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_TwoSided_Leaves_UDW.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_WindGust.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_WindGust.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_WorldspaceColorVariation.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_WorldspaceColorVariation.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_adjustTwoSidedNormal.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_adjustTwoSidedNormal.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_adjustTwoSidedNormal_UDW.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_adjustTwoSidedNormal_UDW.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_generateTranslucency.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_generateTranslucency.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_generateTwoSidedSpecular.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_generateTwoSidedSpecular.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_generateTwoSidedSpecular_UDW.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/MS_Foliage_Material/MaterialFunctions/Foliage/MF_generateTwoSidedSpecular_UDW.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/M_MS_Billboard_Material/M_MS_Billboard_Material.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/M_MS_Billboard_Material/M_MS_Billboard_Material.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/M_MS_Default_Fuzz_Material/M_MS_Default_Fuzz_Material.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/M_MS_Default_Fuzz_Material/M_MS_Default_Fuzz_Material.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/M_MS_Default_Fuzz_Material_VT/M_MS_Default_Fuzz_Material_VT.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/M_MS_Default_Fuzz_Material_VT/M_MS_Default_Fuzz_Material_VT.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/M_MS_Default_Material/M_MS_Default_Material.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/M_MS_Default_Material/M_MS_Default_Material.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/M_MS_Default_Material_VT/M_MS_Default_Material_VT.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/M_MS_Default_Material_VT/M_MS_Default_Material_VT.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/M_MS_Foliage_Material/Functions/MF_Translucency.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/M_MS_Foliage_Material/Functions/MF_Translucency.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/M_MS_Foliage_Material/MF_Translucency.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/M_MS_Foliage_Material/MF_Translucency.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/M_MS_Foliage_Material/M_MS_Foliage_Material.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/M_MS_Foliage_Material/M_MS_Foliage_Material.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/M_MS_Surface_Material/M_MS_Surface_Material.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/M_MS_Surface_Material/M_MS_Surface_Material.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/M_MS_Surface_Material_VT/M_MS_Surface_Material_VT.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Megascans/MSPresets/M_MS_Surface_Material_VT/M_MS_Surface_Material_VT.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Niagara/BPFunctions/BF_GES_Niagara.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Niagara/BPFunctions/BF_GES_Niagara.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Niagara/ExampleNiagaraSystem.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Niagara/ExampleNiagaraSystem.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Oceanology/BPFunctions/BP_GES_Oceanology.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Oceanology/BPFunctions/BP_GES_Oceanology.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Oceanology/GES_Oceanology_Wind_Speed_Struct.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Oceanology/GES_Oceanology_Wind_Speed_Struct.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/OceanologyNextGen/BPFunctions/BP_GES_LakeologyNextGen.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/OceanologyNextGen/BPFunctions/BP_GES_LakeologyNextGen.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/OceanologyNextGen/BPFunctions/BP_GES_OceanologyNextGen.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/OceanologyNextGen/BPFunctions/BP_GES_OceanologyNextGen.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/OceanologyNextGen/GES_LakeologyNextGen_Wind_Speed_Struct.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/OceanologyNextGen/GES_LakeologyNextGen_Wind_Speed_Struct.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/OceanologyNextGen/GES_OceanologyNextGen_Wind_Speed_Struct.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/OceanologyNextGen/GES_OceanologyNextGen_Wind_Speed_Struct.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Particles_Wind_Control_System/BPFunctions/BP_GES_Particles_Wind_Control_System.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Particles_Wind_Control_System/BPFunctions/BP_GES_Particles_Wind_Control_System.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Particles_Wind_Control_System/GES_Particle_Wind_Speed_Struct.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Particles_Wind_Control_System/GES_Particle_Wind_Speed_Struct.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/ProjectNature/BPFunctions/BF_GES_ProjectNature.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/ProjectNature/BPFunctions/BF_GES_ProjectNature.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/ProjectNature/GES_PN_Wind_Speed_Struct.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/ProjectNature/GES_PN_Wind_Speed_Struct.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/ProjectNature/Materials/MaterialFunctions/PN_AnimationShader.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/ProjectNature/Materials/MaterialFunctions/PN_AnimationShader.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/ProjectNature/Materials/MaterialFunctions/PN_Bending.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/ProjectNature/Materials/MaterialFunctions/PN_Bending.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/ProjectNature/Materials/MaterialFunctions/PN_MultiBend.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/ProjectNature/Materials/MaterialFunctions/PN_MultiBend.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/ProjectNature/Materials/MaterialFunctions/PN_WindAnimation.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/ProjectNature/Materials/MaterialFunctions/PN_WindAnimation.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/ProjectNature/PN_GrassLibrary/Materials/grassMaterials/MA_Grass.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/ProjectNature/PN_GrassLibrary/Materials/grassMaterials/MA_Grass.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/ProjectNature/PN_interactiveSpruceForest/Materials/MasterMaterials/MA_Imposter.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/ProjectNature/PN_interactiveSpruceForest/Materials/MasterMaterials/MA_Imposter.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/ProjectNature/PN_interactiveSpruceForest/Materials/MasterMaterials/MA_Summer.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/ProjectNature/PN_interactiveSpruceForest/Materials/MasterMaterials/MA_Summer.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Reference/BPFunctions/BF_GES_Reference.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Reference/BPFunctions/BF_GES_Reference.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Reference/GES_Ref_Wind_Speed_Struct.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Reference/GES_Ref_Wind_Speed_Struct.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Riverology/BPFunctions/BP_GES_Riverology.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Riverology/BPFunctions/BP_GES_Riverology.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/Riverology/GES_Riverology_Wind_Speed_Struct.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/Riverology/GES_Riverology_Wind_Speed_Struct.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/SimpleWind/BPFunctions/BF_GES_SimpleWind.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/SimpleWind/BPFunctions/BF_GES_SimpleWind.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/SimpleWind/GES_SimpleWind_Wind_Speed_Struct.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/SimpleWind/GES_SimpleWind_Wind_Speed_Struct.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/SimpleWind/MPC_SimpleWind.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/SimpleWind/MPC_SimpleWind.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/SpeedTree/BPFunctions/BF_GES_SpeedTree.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/SpeedTree/BPFunctions/BF_GES_SpeedTree.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/SpeedTree/GES_ST_Wind_Speed_Struct.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/SpeedTree/GES_ST_Wind_Speed_Struct.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/SpeedTree/SpeedTreeBillboardMaster.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/SpeedTree/SpeedTreeBillboardMaster.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/SpeedTree/SpeedTreeMaster.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/SpeedTree/SpeedTreeMaster.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/UDS/BPFunctions/BF_GES_UDS.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/UDS/BPFunctions/BF_GES_UDS.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/UDS/UltraDynamicSky/Blueprints/Enum/UDS_Weather_Display_Names.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/UDS/UltraDynamicSky/Blueprints/Enum/UDS_Weather_Display_Names.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/UEWater/BPFunctions/BF_GES_UE_Water.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/UEWater/BPFunctions/BF_GES_UE_Water.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/UEWater/Waves/GerstnerWaves_Lake.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/UEWater/Waves/GerstnerWaves_Lake.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/UEWater/Waves/GerstnerWaves_Ocean.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/UEWater/Waves/GerstnerWaves_Ocean.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/UEWater/Waves/Lake_Blizzard.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/UEWater/Waves/Lake_Blizzard.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/UEWater/Waves/Lake_Clear_Skies.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/UEWater/Waves/Lake_Clear_Skies.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/UEWater/Waves/Lake_Dust_Storm.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/UEWater/Waves/Lake_Dust_Storm.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/UEWater/Waves/Lake_Thunderstorm.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/UEWater/Waves/Lake_Thunderstorm.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/UEWater/Waves/Ocean_Clear_Skies.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/UEWater/Waves/Ocean_Clear_Skies.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/UEWater/Waves/Ocean_Thunderstorm.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/UEWater/Waves/Ocean_Thunderstorm.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Integrations/WindDirectionalSource/BPFunctions/BF_GES_WindDirectionalSource.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Integrations/WindDirectionalSource/BPFunctions/BF_GES_WindDirectionalSource.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/MaterialFunction/MF_ApplyWetnessSnowDustUDW.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/MaterialFunction/MF_ApplyWetnessSnowDustUDW.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/MaterialFunction/MF_GES_TextureBombingCheap.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/MaterialFunction/MF_GES_TextureBombingCheap.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/MaterialFunction/MF_UDW_DLWE.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/MaterialFunction/MF_UDW_DLWE.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/MaterialParameterCollection/MPC_GES.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/MaterialParameterCollection/MPC_GES.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/MaterialParameterCollection/NPC_GES.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/MaterialParameterCollection/NPC_GES.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/OC_UDS_Integration/M_Oceanology_Far_Inst_UDS.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/OC_UDS_Integration/M_Oceanology_Far_Inst_UDS.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/OC_UDS_Integration/M_Oceanology_Inst_UDS.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/OC_UDS_Integration/M_Oceanology_Inst_UDS.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/OC_UDS_Integration/M_Oceanology_UDS.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/OC_UDS_Integration/M_Oceanology_UDS.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/OC_UDS_Integration/Volumetric_Cloud_Shadows_OC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/OC_UDS_Integration/Volumetric_Cloud_Shadows_OC.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Structs/UDS_Weather_Display_Name_Struct.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Structs/UDS_Weather_Display_Name_Struct.uasset -------------------------------------------------------------------------------- /Content/GlobalEnvironmentalSystem/Textures/T_Voronoi_Perturbed_4k.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Content/GlobalEnvironmentalSystem/Textures/T_Voronoi_Perturbed_4k.uasset -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Daniel Elebash 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Plugins/UnrealWaterLibrary/Binaries/Win64/UnrealEditor-WaterLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Plugins/UnrealWaterLibrary/Binaries/Win64/UnrealEditor-WaterLibrary.dll -------------------------------------------------------------------------------- /Plugins/UnrealWaterLibrary/Binaries/Win64/UnrealEditor-WaterLibrary.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delebash/UE_GlobalEnvironmentalSystem/3590e9fef62067a4ebf5cabcfb89733733084441/Plugins/UnrealWaterLibrary/Binaries/Win64/UnrealEditor-WaterLibrary.exp -------------------------------------------------------------------------------- /Plugins/UnrealWaterLibrary/Binaries/Win64/UnrealEditor.modules: -------------------------------------------------------------------------------- 1 | { 2 | "BuildId": "37670630", 3 | "Modules": 4 | { 5 | "WaterLibrary": "UnrealEditor-WaterLibrary.dll" 6 | } 7 | } -------------------------------------------------------------------------------- /Plugins/UnrealWaterLibrary/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Daniel Elebash 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Plugins/UnrealWaterLibrary/README.md: -------------------------------------------------------------------------------- 1 | # WaterBlueprintFunctionLibrary 2 | Extra unreal water c++ functions exposed to blueprints 3 | -------------------------------------------------------------------------------- /Plugins/UnrealWaterLibrary/Source/WaterLibrary/Private/WaterLibrary.cpp: -------------------------------------------------------------------------------- 1 | // Copyright Epic Games, Inc. All Rights Reserved. 2 | 3 | #include "..\Public\WaterLibrary.h" 4 | 5 | #define LOCTEXT_NAMESPACE "FWaterLibraryModule" 6 | 7 | void FWaterLibraryModule::StartupModule() 8 | { 9 | // This code will execute after your module is loaded into memory; the exact timing is specified in the .uplugin file per-module 10 | 11 | } 12 | 13 | void FWaterLibraryModule::ShutdownModule() 14 | { 15 | // This function may be called during shutdown to clean up your module. For modules that support dynamic reloading, 16 | // we call this function before unloading the module. 17 | 18 | } 19 | 20 | #undef LOCTEXT_NAMESPACE 21 | 22 | IMPLEMENT_MODULE(FWaterLibraryModule, WaterLibrary) -------------------------------------------------------------------------------- /Plugins/UnrealWaterLibrary/Source/WaterLibrary/Private/WaterLibraryBP.cpp: -------------------------------------------------------------------------------- 1 | // Copyright Epic Games, Inc. All Rights Reserved. 2 | 3 | #include "..\Public\WaterLibraryBP.h" 4 | #include "WaterLibrary.h" 5 | #include "WaterBodyActor.h" 6 | #include "WaterWaves.h" 7 | #include "GerstnerWaterWaves.h" 8 | #include "Kismet/GameplayStatics.h" 9 | 10 | UWaterLibraryBP::UWaterLibraryBP(const FObjectInitializer& ObjectInitializer) 11 | : Super(ObjectInitializer) 12 | { 13 | 14 | } 15 | 16 | UWaterWaves* UWaterLibraryBP::LoadWaterWaveAssetFile (const FString& WaveAssetFolder, const FString& WaveAssetName) 17 | { 18 | const FString FullPath = WaveAssetFolder + "/" + WaveAssetName;; 19 | UWaterWavesAsset* WaterWavesRef = LoadObject(nullptr, const_cast(*FullPath)); 20 | return WaterWavesRef->GetWaterWaves(); 21 | } 22 | 23 | void UWaterLibraryBP::RecalcWaveData(UObject* WorldContextObject, UGerstnerWaterWaves* GerstnerWaterWaves) 24 | { 25 | GerstnerWaterWaves->RecomputeWaves(true); 26 | } 27 | -------------------------------------------------------------------------------- /Plugins/UnrealWaterLibrary/Source/WaterLibrary/Public/WaterLibrary.h: -------------------------------------------------------------------------------- 1 | // Copyright Epic Games, Inc. All Rights Reserved. 2 | 3 | #pragma once 4 | 5 | #include "Modules/ModuleManager.h" 6 | 7 | class FWaterLibraryModule : public IModuleInterface 8 | { 9 | public: 10 | 11 | /** IModuleInterface implementation */ 12 | virtual void StartupModule() override; 13 | virtual void ShutdownModule() override; 14 | }; 15 | -------------------------------------------------------------------------------- /Plugins/UnrealWaterLibrary/Source/WaterLibrary/Public/WaterLibraryBP.h: -------------------------------------------------------------------------------- 1 | // Copyright Epic Games, Inc. All Rights Reserved. 2 | 3 | #pragma once 4 | 5 | #include "Kismet/BlueprintFunctionLibrary.h" 6 | #include "WaterLibraryBP.generated.h" 7 | 8 | /* 9 | * Function library class. 10 | * Each function in it is expected to be static and represents blueprint node that can be called in any blueprint. 11 | * 12 | * When declaring function you can define metadata for the node. Key function specifiers will be BlueprintPure and BlueprintCallable. 13 | * BlueprintPure - means the function does not affect the owning object in any way and thus creates a node without Exec pins. 14 | * BlueprintCallable - makes a function which can be executed in Blueprints - Thus it has Exec pins. 15 | * DisplayName - full name of the node, shown when you mouse over the node and in the blueprint drop down menu. 16 | * Its lets you name the node using characters not allowed in C++ function names. 17 | * CompactNodeTitle - the word(s) that appear on the node. 18 | * Keywords - the list of keywords that helps you to find node when you search for it using Blueprint drop-down menu. 19 | * Good example is "Print String" node which you can find also by using keyword "log". 20 | * Category - the category your node will be under in the Blueprint drop-down menu. 21 | * 22 | * For more info on custom blueprint nodes visit documentation: 23 | * https://wiki.unrealengine.com/Custom_Blueprint_Node_Creation 24 | */ 25 | UCLASS() 26 | class UWaterLibraryBP : public UBlueprintFunctionLibrary 27 | { 28 | GENERATED_UCLASS_BODY() 29 | 30 | UFUNCTION(BlueprintCallable, meta = (WorldContext = "WorldContextObject", Keywords = "WaterLibrary water waves"), Category = "WaterLibrary") 31 | static void RecalcWaveData(UObject* WorldContextObject,UGerstnerWaterWaves* GerstnerWaterWaves); 32 | 33 | UFUNCTION(BlueprintCallable, meta = (WorldContext = "WorldContextObject", Keywords = "WaterLibrary water waves"), Category = "WaterLibrary") 34 | static UWaterWaves* LoadWaterWaveAssetFile(const FString& WaveAssetFolder, const FString& WaveAssetName); 35 | 36 | }; 37 | -------------------------------------------------------------------------------- /Plugins/UnrealWaterLibrary/Source/WaterLibrary/WaterLibrary.Build.cs: -------------------------------------------------------------------------------- 1 | // Some copyright should be here... 2 | 3 | using UnrealBuildTool; 4 | 5 | public class WaterLibrary : ModuleRules 6 | { 7 | public WaterLibrary(ReadOnlyTargetRules Target) : base(Target) 8 | { 9 | PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs; 10 | 11 | PublicIncludePaths.AddRange( 12 | new string[] { 13 | // ... add public include paths required here ... 14 | } 15 | ); 16 | 17 | 18 | PrivateIncludePaths.AddRange( 19 | new string[] { 20 | // ... add other private include paths required here ... 21 | } 22 | ); 23 | 24 | 25 | PublicDependencyModuleNames.AddRange( 26 | new string[] 27 | { 28 | "Core", 29 | // ... add other public dependencies that you statically link with here ... 30 | } 31 | ); 32 | 33 | 34 | PrivateDependencyModuleNames.AddRange( 35 | new string[] 36 | { 37 | "CoreUObject", 38 | "Engine", 39 | "Slate", 40 | "SlateCore", "Water", 41 | // ... add private dependencies that you statically link with here ... 42 | } 43 | ); 44 | 45 | 46 | DynamicallyLoadedModuleNames.AddRange( 47 | new string[] 48 | { 49 | // ... add any modules that your module loads dynamically here ... 50 | } 51 | ); 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /Plugins/UnrealWaterLibrary/WaterLibrary.uplugin: -------------------------------------------------------------------------------- 1 | { 2 | "FileVersion": 3, 3 | "Version": 1, 4 | "VersionName": "1.0", 5 | "FriendlyName": "WaterLibrary", 6 | "Description": "Expose extra c++ water functions to blueprints", 7 | "Category": "Other", 8 | "CreatedBy": "Daniel Elebash", 9 | "CreatedByURL": "", 10 | "DocsURL": "", 11 | "MarketplaceURL": "", 12 | "SupportURL": "", 13 | "CanContainContent": true, 14 | "IsBetaVersion": false, 15 | "IsExperimentalVersion": false, 16 | "Installed": false, 17 | "Modules": [ 18 | { 19 | "Name": "WaterLibrary", 20 | "Type": "Runtime", 21 | "LoadingPhase": "PreLoadingScreen" 22 | }, 23 | ], 24 | "Plugins": [ 25 | { 26 | "Name": "Water", 27 | "Enabled": true 28 | } 29 | ] 30 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Unreal Engine 5 Global Environmental System (GES) 2 | 3 | This system integrates Ultra Dynamic Sky Weather (potentially any Weather System) with Megascan Foliage, Trees, Props, UE Water, Ambient Wind System, and various other Systems. 4 | 5 | Note: In this current version UDS is required and the only dependency. All the quxiel materials use UDS Wet Weather Effects. But we should be able to use other Weather Systems such as Sky Creator I just have not done any of the integration or material integration for that yet. 6 | 7 | ## Documentation 8 | 9 | https://delebash.github.io/Documentation_For_My_Unreal_Projects/#/ges/main 10 | 11 | 12 | 13 | 14 | 15 | ## Download compiled version of Runtime Demo 16 | 17 | 18 | ___ 19 | 20 | ## What you get 21 | 22 | 1) Global Environmental System Blueprint (GES) -- Change wind strength, direction, seasons, health, and weather effects on MS Trees, foliage and props such as rocks or logs 23 | 24 | 2) Ultra Dynamic Sky/Weather Integration -- Weather effects are added to MS Materials. https://www.unrealengine.com/marketplace/en-US/product/ultra-dynamic-sky?sessionInvalidated=true 25 | 26 | 2) Megascan Foliage and Trees Integration -- Wind and Weather effects added. Trees https://www.unrealengine.com/marketplace/en-US/product/megascans-trees-european-hornbeam-early-access 27 | 28 | 3) Foliage Interaction and Wind System -- This system was extracted and modified from the awesome Project Nature pack -- Permenantly Free Nature Assets on UE Marketplace https://www.unrealengine.com/marketplace/en-US/profile/Project+Nature?count=20&sortBy=effectiveDate&sortDir=DESC&start= 29 | 30 | 4) Foliage Health And Season -- Adjust the color of your foliage. Extracted from MS Global Foliage Actor. Tried to make it more generaic so it will work with non MS Foliage 31 | 32 | 5) Ambient Wind System Integration -- Enable any actor to receive wind https://www.unrealengine.com/marketplace/en-US/product/ambient-wind-system 33 | 34 | 6) Project Nature Integration -- https://www.unrealengine.com/marketplace/en-US/profile/Project+Nature? 35 | 36 | 6) UE Water Integration -- Change the Wave Asset file based on the current Weather 37 | 38 | 7) SpeedTree Integration - Just an example of how to do it 39 | 40 | 41 | ## Support: 42 | https://discord.gg/2WkHWNDf8q 43 | 44 | ## Roadmap: 45 | https://trello.com/b/UwL88dv5/unreal-global-environmental-system 46 | 47 | ## My other projects: 48 | 49 | Unreal Mapbox Bridge - Import real world locations into UE as Landscapes 50 | https://github.com/delebash/UnrealMapboxBridgePlugin 51 | 52 | Unreal Vault Organizer - Organize your Unreal Vault with Tags and get update notifications 53 | https://github.com/delebash/unreal_vault_organizer 54 | 55 | Texture From Mesh Creator - Creates a texture from a screen shot of a Mesh. Main puporse for this was so I could easily capture the show print of my characters so I could stamp that texture into the landscape for footprint effects. 56 | https://github.com/delebash/TextureFromMeshCreator 57 | 58 | Global Environmental System (GES) -- This system integrates Ultra Dynamic Sky Weather (potentially any Weather System) with Megascan Foliage, Trees, Props, UE Water, Ambient Wind System, and various other Systems. 59 | https://github.com/delebash/UE_GlobalEnvironmentalSystem 60 | 61 | 62 | ## Big Thanks to Project Nature and Megascan Trees Global Foliage Actor 63 | --------------------------------------------------------------------------------