├── .gitignore ├── Content ├── BP_Cloth.uasset └── M_ClothWireframe.uasset ├── README.md ├── Resources └── Icon128.png ├── Shaders └── ClothConstraintComputeShader.usf ├── Source └── VPS │ ├── Private │ ├── ProceduralClothComponent.cpp │ └── VPS.cpp │ ├── Public │ ├── ProceduralClothComponent.h │ └── VPS.h │ └── VPS.Build.cs ├── VPS.uplugin ├── cloth.gif └── wireframe.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealXinda/VPS/HEAD/.gitignore -------------------------------------------------------------------------------- /Content/BP_Cloth.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealXinda/VPS/HEAD/Content/BP_Cloth.uasset -------------------------------------------------------------------------------- /Content/M_ClothWireframe.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealXinda/VPS/HEAD/Content/M_ClothWireframe.uasset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealXinda/VPS/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealXinda/VPS/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Shaders/ClothConstraintComputeShader.usf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealXinda/VPS/HEAD/Shaders/ClothConstraintComputeShader.usf -------------------------------------------------------------------------------- /Source/VPS/Private/ProceduralClothComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealXinda/VPS/HEAD/Source/VPS/Private/ProceduralClothComponent.cpp -------------------------------------------------------------------------------- /Source/VPS/Private/VPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealXinda/VPS/HEAD/Source/VPS/Private/VPS.cpp -------------------------------------------------------------------------------- /Source/VPS/Public/ProceduralClothComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealXinda/VPS/HEAD/Source/VPS/Public/ProceduralClothComponent.h -------------------------------------------------------------------------------- /Source/VPS/Public/VPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealXinda/VPS/HEAD/Source/VPS/Public/VPS.h -------------------------------------------------------------------------------- /Source/VPS/VPS.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealXinda/VPS/HEAD/Source/VPS/VPS.Build.cs -------------------------------------------------------------------------------- /VPS.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealXinda/VPS/HEAD/VPS.uplugin -------------------------------------------------------------------------------- /cloth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealXinda/VPS/HEAD/cloth.gif -------------------------------------------------------------------------------- /wireframe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealXinda/VPS/HEAD/wireframe.gif --------------------------------------------------------------------------------