Construct 3 r449

You're viewing a single comment in a conversation. View all the comments
  • 2 Comments

  • Order by
  • I mean, that we have 20 objects on the scene and they are all just cloned. Can I turn off the collision physics between 3 objects with IDs like 1-2-3? Why turn them on after a certain time?

    • You can't disable the built-in "On collision with another object" event, but with my behavior you can know the UID of the instances that are colliding, so technically you can use that to ignore collisions between specific instances. I think that you probably need like a list of UID of which the collisions must be ignored. It is no big deal, I can add this functionality, maybe it can be useful for some use cases. You will be able to add N UIDs to the "black list" with a string like: "1,2,3" and be able to remove them with the same method, like "2,3". Could this work?