Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Bug / Crash  One Particle acts like kinematic
#13
Looks like a call to PrefabUtility.RecordPrefabInstancePropertyModifications(); is missing in the attachment's editor , (ObiParticleAttachmentEditor.cs) line 109. Should look like this:

Quote:void OnParticleGroupSelected(object index)
        {
            Undo.RecordObject(attachment, "Set particle group");
            attachment.particleGroup = index as ObiParticleGroup;
            PrefabUtility.RecordPrefabInstancePropertyModifications(attachment);
        }

After this change, select the attachment of the "start" particle group to CoffeeMachineOutOfOrder, and re-select the "start" particle group (click the particle group dropdown, and just select the same particle group). That will fix the issue.

Will add this fix in the next update. Thanks for reporting it!
Reply


Messages In This Thread
One Particle acts like kinematic - by alex798 - 24-06-2021, 08:49 AM
RE: One Particle acts like kinematic - by alex798 - 24-06-2021, 10:15 AM
RE: One Particle acts like kinematic - by alex798 - 24-06-2021, 10:49 AM
RE: One Particle acts like kinematic - by alex798 - 24-06-2021, 12:21 PM
RE: One Particle acts like kinematic - by alex798 - 24-06-2021, 01:23 PM
RE: One Particle acts like kinematic - by alex798 - 24-06-2021, 01:57 PM
RE: One Particle acts like kinematic - by josemendez - 24-06-2021, 02:24 PM
RE: One Particle acts like kinematic - by alex798 - 24-06-2021, 02:28 PM
RE: One Particle acts like kinematic - by alex798 - 24-06-2021, 02:54 PM