感谢网友分享,原文地址(How to Make an Object Shatter Into Smaller Fragments in Unity),中文翻译地址(Unity实现物体破碎效果

In this tutorial I will show you how to create a simple shattering effect for your Unity game. Instead of just "deleting" a crate (or any other object) when it is hit or destroyed, we can make it splinter into smaller pieces.

For this tutorial, you'll need the newest version of Unity, and some basic experience with it. For the more advanced effect later in the tutorial, a 3D modelling tool will also be necessary. If you don't have one available or don't want to model the objects yourself, I've included them in the source downloads. (The Unity files themselves are also available there.)

In the basic version of this effect, a cube will be destroyed, leaving several fragments in its wake which will fall realistically to the ground:

splintering_02_cube_intactsplintering_03_cube_broken

Later, we'll switch the cube for a more complicated barrel model:

splintering_04_barrel_intactsplintering_05_barrel_broken

You can try it out for yourself here:

barrel_demo_screenshot

Click to try the demo. (The cube demo is available here, too.)

Create a new Unity project and open a fresh scene. Create a plane, which will act as our ground, and a cube, which will be the destructible object. Also, place a directional light to make things more visible. Create two new materials and assign them to the floor and the cube, so that we can tell them apart, and move the camera so that everything can be seen:

splintering_01_setup

There are many ways to "destroy" the cube. For now, we'll take the simplest approach possible.

Create a new JavaScript file and name it destructionController.js. In this, we'll put all the functionality of removing the cube and creating the fragments. Add the following lines to it:

1
2
3
4
5
6
7
function Update()
  {
      if (Input.GetKey(Keycode.space))
      {
         Destroy(gameObject);
      }
  }

Now, add the script to the cube by dragging it onto it. Start the game and make a test run. If you press space, the cube should be deleted.

splintering_06_cube_deleted

After being removed, it will also no longer appear in the hierarchy, as you can see in the screenshot.

Now create eight smaller cubes; these will be the "fragments" of the current cube. Give them the same material as the cube. (Don't worry about the looks yet, we'll make them look awesome later on.) They should look like this:

splintering_07_fragments_01

Stack all 8 cubes to form a bigger, single cube, without them intersecting:

splintering_07_fragments_02

Give every cube a rigidbody, set their mass to 22, activate use gravity, and deactivateis kinematic. This will make the fragments fall down and use physics. If you want, you can tweak these values later to produce results that are better suited for your game.

splintering_09_fragments_04

Now, group the cubes under a new empty gameObject and call it remainsCube. When the original cube is destroyed, it will be replaced with this new object made out of smaller cubes.

splintering_08_fragments_03

Drag the remainsCube object into the project folder to make a prefab out of it. Once it is safely in the prefab folder, delete it out of the main scene, and it is ready to use.

Add the highlighted lines to the destructionController script:

1
2
3
4
5
6
7
8
9
var remains: GameObject;
function Update()
{
     if (Input.GetKey(Keycode.space))
     {
         Instantiate(remains, transform.position, transform.rotation);
         Destroy(gameObject);
     }
}

This will create a copy of the remains at the exact position of the cube. Afterwards, the cube will be removed, giving the illusion that the new one is actually the old one, but "broken".

To actually get this to work, you have to manually assign the remains to the cube. Click on it, and in the Inspector you should see a tab containing the Destruction Controllerscript. There should be a slot called Remains, which should currently be empty. Drag the remains prefab from the project folder into this slot. The Destruction Controllerscript in the Inspector should now look like this:

splintering_16_prefab_assign

Make a test run! If everything is set up correctly, then when you press space, the remains should replace the cube. If you're lucky, they should then tumble to the ground.

So, this basic cube:

splintering_02_cube_intact

...should turn into something similar to this:

splintering_10_unlucky

Sadly, it is not guaranteed that the fragments will tumble in a nice way. Fortunately, there are ways to solve that.

Create a new empty gameObject and give it a sphere collider, but no rigidbody. Pull the remains into the scene, so that you can edit them. Add the sphere collider object to the remains, and place it so that it intersects with some of the cubes:

splintering_17_sphere

Now, the fragments will immediately collide with the sphere, creating a tumble effect:

splintering_02_cube_intactsplintering_11_better

Depending on the game you are building, we can't afford too many "splinters" at once in a scene. The straightforward solution is to delete them after a few seconds. In order to do so, create a new JavaScript file and name it selfDestruct.js. Put the following code in it:

1
2
3
4
5
function Start()
{
     yield WaitForSeconds(4.0);
     Destroy(gameObject);
}

When the object is created, it will wait for four seconds, and then delete itself. Add this code to the remains object. If you now destroy the cube and create the fragments, the remains will destroy themselves after four seconds.

And that's it! Now you have the basics to efficiently have an object "shatter" into several smaller pieces when it is destroyed. You can use this effect as-is, but let's take it a little further and see how to use it with a more complex object.

Now that we've got the basic system in place, we can make it more pretty by replacing the cubes with actual objects.

splintering_05_barrel_broken

If you are adept in a 3D modelling tool, you can create your own objects. If not, or if you do not have one available, you can get the prepared 3D file from the source download.

Copy the file into your asset folder, and the 3D models will automatically be imported for your use. Before using them, click the file in the Asset Explorer and make sure that the source files are being imported correctly at a scale factor of 1 (not 0.1 or 0.001; that only complicates things).

splintering_12_importer

If you look at the objects, you can see a field called meshfilter in the Inspector. If you click it, you get a list of all available meshes in the project. Now replace all the cubes in the Cube remains with barrel parts.

splintering_13_barrel_01

The intact cube gets the barrel mesh; the smaller cube fragments need the meshesbarrel_fragment_01 to barrel_fragment_08. After those are assigned, set their local positions to (0, 0, 0). (Their pivot-points have been set so that they can be easily zeroed in that way.)

Instead of a box collider, a mesh collider would be much more convenient. Remove all the box colliders on the fragments, and replace them with mesh colliders. Check each mesh collider and make sure each has the correct mesh applied (that is,barrel_fragment_01 needs the barrel_fragment_01 mesh, and so on).

splintering_15_barrel_03

Once that is done, set all mesh colliders to convex. (A non-convex mesh collider can't collide with other non-convex mesh colliders. It's a programming thing.) Also, remove the sphere collider we added to the remains, as it might not be necessary.

It everything is set up correctly, you should have a barrel which will spring apart into eight smaller pieces.

The same system can also be used to add other effects to the destruction. Do you have an explosion? Add it to the remains! Add sounds, for a satisfying crack. Put a particle effect in there, creating a small puff of smoke.

In this tutorial I've showed you the most straightforward way of making an object shatter into smaller fragments. Now you know how to destroy an object, removing it from the game; how to swap the object with smaller fragments directly before its destruction; and how to have the fragments self-destruct afterwards.

This system can now be modified and adapted to fit many specific purposes. You could have a crate or a barrel splinter and shatter when shot. You could create an explosion after a plane is hit. Or you could have a boat crack into two pieces. Enjoy!

Unity 实现物体破碎效果(转)相关推荐

  1. Unity 实现物体破碎效果(转)

    感谢网友分享,原文地址(How to Make an Object Shatter Into Smaller Fragments in Unity),中文翻译地址(Unity实现物体破碎效果) In ...

  2. unity 实现物体破碎效果的一些方法 - 细雨淅淅

    游戏越来越接近现实的感觉,如果有一个真是的 虚拟现实设备,可能我们真的会感觉是在真实世界.场景的逼真是在渲染效果.角色AI.游戏逻辑.物理效果等等一起导致的结果.现在游戏越来越大,除了渲染,物理估计是 ...

  3. Unity Shader·屏幕破碎效果

    Unity Shader·屏幕破碎效果 前言 最近在做一个新的MMD(用Unity来实现),其中用到了一些好看的渲染技术在这里分享一下. 视频链接 https://www.bilibili.com/v ...

  4. [教程] 在Unity中制作物体破碎效果

    这篇教程将教大家如何在Unity中制作一个简单的碎片效果.当物体撞击或销毁时,我们将物体分裂为更小的碎片来取代之前的仅仅直接"删除"物体. 需求 这篇教程需要最新版本的Unity, ...

  5. Unity物体破碎效果

    物体破碎的效果在游戏中非常常见,在本文中将实现任意大小的长方体的敲击破碎,并为实现更复杂物体的破碎效果做好铺垫.     最终效果图如下:     为了实现这种破碎效果,我们必须生成碎片物体,在本例中 ...

  6. unity 3d物体描边效果_从零开始的卡通渲染描边篇

    序言: 一直对卡通渲染非常感兴趣,前后翻找了不少的文档,做了一些工作.前段时间<从零开始>的手游上线了,试着渲染了一下的其中模型,觉得效果很不错.打算写一个专栏记录其中的渲染技术.在后面的 ...

  7. unity 陀螺仪 物体旋转和移动效果

    unity 陀螺仪 物体旋转和移动效果 直接上码 带注释 public class SDKGyroController : MonoBehaviour {//陀螺仪是否存在class GyroGame ...

  8. Unity 实现自定义图片破碎效果-2D_Destruction

    Unity 实现自定义图片破碎效果-2D_Destruction 导引 效果预览 源码下载地址 实现流程 1.添加SrpiteRenderer组件 2.添加Explodable组件 3.Polygon ...

  9. Unity 控制物体移动的一些方法

    Unity 控制物体移动的一些方法 开坑, 回头慢慢补. 移动方法的总结. 1, 直接+=Vector3 transform.position += Vector3.forward * moveSpe ...

最新文章

  1. 计算机怎么设置本地硬盘启动不了,电脑bios怎么设置硬盘启动
  2. Ubuntu下安装中文输入法(本文安装的搜狗输入法)
  3. 2022最新款,官宣100000个跨年红包封面,直接领!!
  4. Fxx and game hdu 5945 单调队列dp
  5. Java进阶:图文并茂解析HashMap源码
  6. react学习笔记(8)生命周期回顾与再认识
  7. mysql 有哪些子句_mysql 查询子句
  8. Ubuntu 更改 默认的Python版本
  9. windows计划任务+批处理文件实现oracle数据库的定时备份与恢复
  10. 通过XShell实现windows文件上传到Linux服务器上
  11. 数字信号处理实验matlab,数字信号处理实验Matlab代码
  12. Java 设计模式 Adapter 类适配器 模式
  13. 微信公众号运营推广基础入门知识
  14. 高级前端工程师知识图谱
  15. 《统计学习方法》(李航)的学习体会(一)
  16. 再读《投资中最简单的事》
  17. 陕西二本计算机软件工程,高考分数不理想,仍然想报考软件工程专业,这四所二本大学不错...
  18. 一加7t人脸识别_一加7T深度测评:它体现了最佳的技术价值吗?
  19. MATLAB在动态经济学中的应用,MATLAB在动态经济学中的应用
  20. Android3D抽方块源码,block puzzle jewel 方块拼图消除游戏安卓源码

热门文章

  1. 模拟微信浏览器抓取数据
  2. 浅拷贝如何成为深拷贝1
  3. 数据分析的别称也叫定性数据分析
  4. Nginx配置 https 证书
  5. 计算机机房市电引入,基站市电引入容量计算及相关电缆配置表v0
  6. KVM虚拟化详解以及如何创建KVM虚拟机
  7. GBase8s数据库EXECUTE PROCEDURE 语句
  8. UTF8和UNICODE的关系及转换规则(字库篇一)
  9. 安全帽识别系统-助力安全管控
  10. 跳转支付宝扫描二维码,付款码,收款码,和手机计算器,日历