Click or drag to resize
Ab4d.SharpEngine logo

HitTestOptionsHitTestFilterResult Enumeration

Specifies the return result of a hit test filter callback method.

Namespace: Ab4d.SharpEngine.Common
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 4.1.9680+a1b1e43de1ad9a7e35472c33948d688d7b40ef79
Syntax
C#
public enum HitTestFilterResult
Members
Member nameValueDescription
Stop0 Stop hit testing (do not check any other SceneNode)
Continue1 Continue hit testing this SceneNode and its child nodes.
ContinueSkipSelf3 Continue hit testing the child scene nodes but skip this scene node.
ContinueSkipChildren5 Continue hit testing this scene node but skip child scene nodes.
ContinueSkipSelfAndChildren7 Continue hit testing but skip this scene node and its child scene nodes (test SceneNodes in other branches).
See Also