qq_37296877 2017-05-25 14:00 采纳率: 61%
浏览 985
已采纳

求帮忙,unity的小问题

using UnityEngine;

public class ShellExplosion : MonoBehaviour
{
public LayerMask m_TankMask; // Used to filter what the explosion affects, this should be set to "Players".
public ParticleSystem m_ExplosionParticles; // Reference to the particles that will play on explosion.
public AudioSource m_ExplosionAudio; // Reference to the audio that will play on explosion.
public float m_MaxDamage = 100f; // The amount of damage done if the explosion is centred on a tank.
public float m_ExplosionForce = 1000f; // The amount of force added to a tank at the centre of the explosion.
public float m_MaxLifeTime = 2f; // The time in seconds before the shell is removed.
public float m_ExplosionRadius = 5f; // The maximum distance away from the explosion tanks can be and are still affected.

private void Start ()
{
    // If it isn't destroyed by then, destroy the shell after it's lifetime.
    Destroy (gameObject, m_MaxLifeTime);
}


private void OnTriggerEnter (Collider other)
{
    // Collect all the colliders in a sphere from the shell's current position to a radius of the explosion radius.
    Collider[] colliders = Physics.OverlapSphere (transform.position, m_ExplosionRadius, m_TankMask);

    // Go through all the colliders...
    for (int i = 0; i < colliders.Length; i++)
    {
        // ... and find their rigidbody.
        Rigidbody targetRigidbody = colliders[i].GetComponent<Rigidbody> ();

        // If they don't have a rigidbody, go on to the next collider.
        if (!targetRigidbody)
            continue;

        // Add an explosion force.
        targetRigidbody.AddExplosionForce (m_ExplosionForce, transform.position, m_ExplosionRadius);

        // Find the TankHealth script associated with the rigidbody.
        TankHealth targetHealth = targetRigidbody.GetComponent<TankHealth> ();

        // If there is no TankHealth script attached to the gameobject, go on to the next collider.
        if (!targetHealth)
            continue;

        // Calculate the amount of damage the target should take based on it's distance from the shell.
        float damage = CalculateDamage (targetRigidbody.position);

        // Deal this damage to the tank.
        targetHealth.TakeDamage (damage);
    }

    // Unparent the particles from the shell.
    m_ExplosionParticles.transform.parent = null;

    // Play the particle system.
    m_ExplosionParticles.Play();

    // Play the explosion sound effect.
    m_ExplosionAudio.Play();

    // Once the particles have finished, destroy the gameobject they are on.
    Destroy (m_ExplosionParticles.gameObject, m_ExplosionParticles.duration);

    // Destroy the shell.
    Destroy (gameObject);
}


private float CalculateDamage (Vector3 targetPosition)
{
    // Create a vector from the shell to the target.
    Vector3 explosionToTarget = targetPosition - transform.position;

    // Calculate the distance from the shell to the target.
    float explosionDistance = explosionToTarget.magnitude;

    // Calculate the proportion of the maximum distance (the explosionRadius) the target is away.
    float relativeDistance = (m_ExplosionRadius - explosionDistance) / m_ExplosionRadius;

    // Calculate damage as this proportion of the maximum possible damage.
    float damage = relativeDistance * m_MaxDamage;

    // Make sure that the minimum damage is always 0.
    damage = Mathf.Max (0f, damage);

    return damage;
}

}

m_ExplosionParticles.transform.parent = null;

这行代码实现了什么功能

  • 写回答

2条回答 默认 最新

  • BigWenZi 2017-05-27 02:15
    关注

    m_ExplosionParticles 让这个物体与父集脱离。 换句话说,让m_ExplosionParticles 置身于世界中。

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵