Axiom.ParticleFX.BoxEmitter.HeightCommand.Set C# (CSharp) Method

Set() public method

public Set ( object target, string val ) : void
target object
val string
return void
			public void Set( object target, string val )
			{
				BoxEmitter emitter = target as BoxEmitter;
				emitter.Height = StringConverter.ParseFloat( val );
			}
			public string Get( object target )
BoxEmitter.HeightCommand