Axiom.Core.SceneManager.ShadowCasterSceneQueryListener.Prepare C# (CSharp) Method

Prepare() public method

Prepare the listener for use with a set of parameters.
public Prepare ( bool lightInFrustum, PlaneBoundedVolumeList lightClipVolumes, Light light, Camera camera, List shadowCasterList, float farDistSquared ) : void
lightInFrustum bool
lightClipVolumes PlaneBoundedVolumeList
light Light
camera Camera
shadowCasterList List
farDistSquared float
return void
			public void Prepare( bool lightInFrustum,
								 PlaneBoundedVolumeList lightClipVolumes,
								 Light light,
								 Camera camera,
								 List<ShadowCaster> shadowCasterList,
								 float farDistSquared )
			{
				this.casterList = shadowCasterList;
				this.isLightInFrustum = lightInFrustum;
				this.lightClipVolumeList = lightClipVolumes;
				this.camera = camera;
				this.light = light;
				this.farDistSquared = farDistSquared;
			}
SceneManager.ShadowCasterSceneQueryListener