csParticleMove.cs 201 B

1234567891011
  1. using UnityEngine;
  2. using System.Collections;
  3. public class csParticleMove : MonoBehaviour
  4. {
  5. public float speed = 0.1f;
  6. void Update () {
  7. transform.Translate(Vector3.back * speed);
  8. }
  9. }