Click or drag to resize
AB4D logo

DXHitTestOptionsGetOnlyOneHitPerSceneNode Property

When true then only one hit result is get from one SceneNode. When false (by default), then multiple hit results can be created by one SceneNode. This property is used only by the GetAllHitObjects(Ray, SceneNode) method and not by GetClosestHitObject(Ray, SceneNode) method.

Namespace: Ab3d.DirectX
Assembly: Ab3d.DXEngine (in Ab3d.DXEngine.dll) Version: 7.0.8865.1045
Syntax
C#
public bool GetOnlyOneHitPerSceneNode { get; set; }

Property Value

Boolean
Remarks

When true then only one hit result is get from one SceneNode.

When false (by default), then multiple hit results can be created by one SceneNode (for example one hit result when ray enters the object and one hit result when ray leaves the object).

This property is used only by the GetAllHitObjects(Ray, SceneNode) method and not by GetClosestHitObject(Ray, SceneNode) method.

See Also