Axiom.Core.BillboardSet.BillboardSet C# (CSharp) Method

BillboardSet() private method

Public constructor. Should not be created manually, must be created using a SceneManager.
private BillboardSet ( string name, int poolSize, bool externalData ) : System
name string
poolSize int
externalData bool
return System
		internal BillboardSet( string name, int poolSize, bool externalData )
			: base( name )
		{
			this.PoolSize = poolSize;
			this.externalData = externalData;

			this.SetDefaultDimensions( 100, 100 );
			this.MaterialName = "BaseWhite";
			this.castShadows = false;
			this.SetTextureStacksAndSlices( 1, 1 );
		}

Same methods

BillboardSet::BillboardSet ( string name, int poolSize ) : System