ParticleEmitter.rndVelocity 随机速度

var useWorldSpace : bool

Description描述

A random speed along X, Y, and Z that is added to the velocity.

一个沿着X,Y和Z轴的随机的速度,它被添加到当前的速度。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public void Awake() {
		particleEmitter.rndVelocity = new Vector3(2, 0.1F, 2);
	}
}
// Spread random velocity mainly along x-z axis
// 主要沿着x-z轴方向传播随机速度

particleEmitter.rndVelocity = Vector3(2, 0.1, 2);
最后修改:2011年1月23日 Sunday 13:56

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。