Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help  I need to access the transform of a specific particle group
#3
(16-06-2022, 11:12 AM)josemendez Wrote: Sure, it's pretty simple:

Code:
// get the group:
var group = cloth.clothBlueprint.groups[groupIndex];

// create an attachment:
var attachment = cloth.AddComponent<ObiParticleAttachment>();
attachment.particleGroup = group;
attachment.target = yourTransform;

// move your transform:
yourTransform.position = newPos;

Thank you so much!
Reply


Messages In This Thread
RE: I need to access the transform of a specific particle group - by KaanOzcelik - 16-06-2022, 11:50 AM