Axiom.Core.StaticGeometry.Region.Region C# (CSharp) Method

Region() public method

public Region ( StaticGeometry parent, string name, SceneManager mgr, UInt32 regionID, Vector3 center ) : System
parent StaticGeometry
name string
mgr SceneManager
regionID System.UInt32
center Vector3
return System
			public Region( StaticGeometry parent, string name, SceneManager mgr, UInt32 regionID, Vector3 center )
				: base( name )
			{
				this.MovableType = "StaticGeometry";
				this.parent = parent;
				this.sceneMgr = mgr;
				this.regionID = regionID;
				this.center = center;
				queuedSubMeshes = new List<QueuedSubMesh>();
				lodValues = new LodValueList();
				aabb = new AxisAlignedBox();
				lodBucketList = new List<LODBucket>();
				shadowRenderables = new ShadowRenderableList();
			}