I am programming a project, where I have to push about 50 objects simultaniously using the physics block. I have the Name of the Objects and know the direction. But how can I do it simultaniously? I have tried the Block “set phyics tick rate to …” but everytime I run it, one item starts to fly, and then, about a second later, the next. I hope you guys can help me out with that.
thanks for your answer. I notived that possibility too. But with about 50 objects, this can be a bit exhausting and confusing. Is there any other way than the run parallel Block?
I’m working on a project, and I need a cart and a sword to run at the same time. I’ve tried using the rune together block, and I’m not sure if I’m doing it right. Can somone pls help??
For running multiple actions simultaneously, the ‘Run Parallel’ block is indeed the one to use. Double-check how you’re adding the different tasks to it; you typically use the cog icon to add new slots for each action you want to run concurrently.
To handle that many objects efficiently without a massive ‘Run Parallel’ block, you should put all 50 objects into a List. Then, use a loop to iterate through the list and apply the physics force to each item. This keeps your workspace clean and ensures the physics engine processes the movements much more consistently.