25-01-2019, 02:41 PM
(25-01-2019, 01:54 PM)Richard Wrote: I could not see any particles... I did it when I try by a plane.
Ok. Now I see the problem in this second pic: you're using a SkinnedMeshRenderer, instead of a regular MeshRenderer.
For skinned meshes, things work a bit differently: all particles start out completely animation-driven (fixed), and you have to unfix the parts that you want to simulate. See:
http://obi.virtualmethodstudio.com/tutor...thing.html
http://obi.virtualmethodstudio.com/tutor...thing.html
If you don't want to blend animation and simulation for your shirt, then you should not use a SkinnedMeshRenderer. Use a MeshRenderer/MeshFilter combo instead. Note that if your mesh contains skinning/animation information, Unity will automatically add a SkinnedMeshRenderer instead. See:
https://docs.unity3d.com/Manual/class-MeshFilter.html