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: 3.2.9386+3a404a3e1ebfa4efd231da7fe6f10dfb23b95dc4
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