2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

親がいなくなったTrailをfade out させる

Last updated at Posted at 2018-02-16

例えばミサイルにTrailをつける場合、ミサイルが消滅するとトレイルも一緒に消えてしまいます。
before2_image-iloveimg-cropped.gif

Trailをミサイルの子に付け、ミサイル消滅時に切り離すことで綺麗にフェードアウトできるようにしてみます。
after2image-iloveimg-cropped.gif
スクリーンショット 2018-02-16 13.01.39.png

TrailFadeOut.cs
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class TrailFadeOut : MonoBehaviour {
    [SerializeField, Range(0f,1f)] float forrowRate = 0f;
    [SerializeField, Range(0.1f, 4f)] float fadeTime = 1f;
    Coroutine coro;
    TrailRenderer trail;
    Vector3 oldPos;

	// Use this for initialization
	void Start () {
        coro = null;
        trail = GetComponent<TrailRenderer>();
        oldPos = transform.position;
	}
	
	// Update is called once per frame
	void Update () {
        if(transform.parent==null){
            if (coro == null){
                Vector3 spd = (transform.position - oldPos) / Time.deltaTime;
                coro = StartCoroutine(trailFadeCo(spd));
            }
        }else{
            oldPos = transform.position;
        }
	}

    IEnumerator trailFadeCo(Vector3 _spd){
        Color defCol = trail.material.GetColor("_TintColor");
        Color col = defCol;
        yield return null;
        while(col.a>0f){
            col.a = Mathf.Max(col.a-Time.deltaTime/fadeTime, 0f);
            trail.material.SetColor("_TintColor",col);
            transform.position += _spd * forrowRate * Time.deltaTime;
            yield return null;
        }
        Destroy(gameObject);
    }
}

Trailは親から切り離されるとフェードアウトを開始し、消えてから自分自身をDestroy()します。

trail.material.SetColor("_TintColor",col);

の部分はTrailに使用しているシェーダーによって適宜書き換えてください。
_Colorプロパティがある場合は

trail.material.color = col

と記述することもできます。
スクリーンショット 2018-02-16 12.57.32.png

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?