About 162,000 results
Open links in new tab
  1. Unity - Scripting API: Rigidbody.AddExplosionForce

    Applies a force to a rigidbody that simulates explosion effects. The explosion is modelled as a sphere with a certain centre position and radius in world space; normally, anything outside the …

  2. How to make an explosion in Unity - Game Dev Beginner

    May 11, 2023 · In this article, you’ll learn how to create an explosive force using the 3D and 2D physics systems, how to create a basic visual effect using particles and how to apply damage …

  3. Please help with AddExplosionForce - Unity Engine - Unity

    Apr 29, 2018 · Try it with a low value like 1-10 if you want to make it explode upwards dramatically. Also, there is one more argument called ForceMode, set it to impulse if you’re …

  4. unity - AddExplosionForce in 2D - Game Development Stack …

    Jan 19, 2024 · force *= explosionForce * (1f - distance/explosionRadius); body.AddForce(force, mode); Add this script to your project, and through the magic of extension methods, …

  5. Unity Ragdoll Explosion Tutorial | Realistic Physics & Forces …

    You’ll learn how to apply explosion forces, set up ragdolls correctly, and make your game feel more dynamic and fun. This tutorial is beginner-friendly and perfect if you want better...

  6. Unity Optimized Explosion - GitHub

    Unity Optimized Explosion is a high-performance, more realistic alternative to Unity's built-in AddExplosionForce function. The primary goal of this project is to provide a practical and …

  7. Rigidbody.AddExplosionForce (). A revealing look. - Medium

    Nov 24, 2023 · We are using the AddExplosionForce () to blast everything from a centralized point. The explosives are either empty game object to simulate an explosion at a point that you …

  8. Unity Script Reference – Rigidbody.AddExplosionForce

    Applies a force to the rigidbody that simulates explosion effects. The explosion force will fall off linearly with distance to the rigidbody. The function also plays nicely with ragdolls.

  9. Unity add explosion force - Unity Engine - Unity Discussions

    Oct 10, 2024 · In the documenation it has an example showing how to iterate through all the nearby colliders and add the explosion force to them.

  10. Explosive Damage and Force with Obstructions | Unity Tutorial

    Using a Rigidbody allows us to capitalize on Unity's physics engine to apply knock back force based on the explosion position and explosive force. We'll play with some different...