Axiom.ParticleFX.CylinderEmitter.WidthCommand.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 )
			{
				CylinderEmitter emitter = target as CylinderEmitter;
				emitter.Width = StringConverter.ParseFloat( val );
			}
			public string Get( object target )
CylinderEmitter.WidthCommand