BSP specialisation of IntersectionSceneQuery.
Inheritance: Axiom.Core.DefaultIntersectionSceneQuery
Example #1
0
		/// <summary>
		///		Creates an IntersectionSceneQuery for this scene manager.
		/// </summary>
		/// <remarks>
		///		This method creates a new instance of a query object for locating
		///		intersecting objects. See SceneQuery and IntersectionSceneQuery
		///		for full details.
		/// </remarks>
		/// <param name="mask">The query mask to apply to this query; can be used to filter out certain objects; see SceneQuery for details.</param>
		public override IntersectionSceneQuery CreateIntersectionQuery( uint mask )
		{
			var q = new BspIntersectionSceneQuery( this );
			q.QueryMask = mask;

			return q;
		}