C# Class MBParticleMathOperator, Pharos

Inheritance: MBParameter
ファイルを表示 Open project: rstaewen/Pharos

Public Properties

Property Type Description
Delay float
DelayRandomPercent float
DelaySync bool
Operator MBParticleMathOperatorOp
RandomPercent float
RandomSign bool
Speed float
Target MBParticleMathOperatorTarget
UseDeltaTime bool
Value Vector3

Public Methods

Method Description
DoOp ( Vector3 &target, Vector3 value ) : void
DoOp ( float &target, float value ) : void
OnBirth ( MBParticle, PT ) : void
OnLifetime ( MBParticle, PT ) : bool
OnPlay ( ) : void
Reset ( ) : void

Method Details

DoOp() public method

public DoOp ( Vector3 &target, Vector3 value ) : void
target Vector3
value Vector3
return void

DoOp() public method

public DoOp ( float &target, float value ) : void
target float
value float
return void

OnBirth() public method

public OnBirth ( MBParticle, PT ) : void
PT MBParticle,
return void

OnLifetime() public method

public OnLifetime ( MBParticle, PT ) : bool
PT MBParticle,
return bool

OnPlay() public method

public OnPlay ( ) : void
return void

Reset() public method

public Reset ( ) : void
return void

Property Details

Delay public_oe property

Delay in seconds
public float Delay
return float

DelayRandomPercent public_oe property

Random deviation from Delay
public float DelayRandomPercent
return float

DelaySync public_oe property

Synchronize all particles?
public bool DelaySync
return bool

Operator public_oe property

The operator used to apply the value
public MBParticleMathOperatorOp Operator
return MBParticleMathOperatorOp

RandomPercent public_oe property

Random deviation from Value
public float RandomPercent
return float

RandomSign public_oe property

Whether value will be randomly negative or positive
public bool RandomSign
return bool

Speed public_oe property

Speed for SineWave operator
public float Speed
return float

Target public_oe property

The target to apply the value to
public MBParticleMathOperatorTarget Target
return MBParticleMathOperatorTarget

UseDeltaTime public_oe property

Whether deltaTime should be applied to value
public bool UseDeltaTime
return bool

Value public_oe property

A Vector to apply to target
public Vector3 Value
return Vector3