예제 #1
0
 static public bool PyObjTypNameIsSprite(
     this GbsAstInfo uiNode) =>
 uiNode.PyObjTypNameMatchesRegex(PyTypeNameSpriteRegex);
예제 #2
0
 static public bool PyObjTypNameMatchesRegexPattern(
     this GbsAstInfo uiNode,
     string regexPattern,
     RegexOptions regexOptions = RegexOptions.None) =>
 uiNode.PyObjTypNameMatchesRegex(regexPattern.AlsRegex(regexOptions));