Packagelaya.utils
Classpublic class HitArea
InheritanceHitArea Inheritance Object

鼠标点击区域,可以设置绘制一系列矢量图作为点击区域和非点击区域(目前只支持圆形,矩形,多边形)



Public Properties
 PropertyDefined By
  hit : Graphics
可点击区域,可以设置绘制一系列矢量图作为点击区域(目前只支持圆形,矩形,多边形)
HitArea
  unHit : Graphics
不可点击区域,可以设置绘制一系列矢量图作为非点击区域(目前只支持圆形,矩形,多边形)
HitArea
Public Methods
 MethodDefined By
  
contains(x:Number, y:Number):Boolean
检测对象是否包含指定的点。
HitArea
  
isHit(x:Number, y:Number):Boolean
是否包含某个点
HitArea
Property Detail
hitproperty
hit:Graphics

可点击区域,可以设置绘制一系列矢量图作为点击区域(目前只支持圆形,矩形,多边形)


Implementation
    public function get hit():Graphics
    public function set hit(value:Graphics):void
unHitproperty 
unHit:Graphics

不可点击区域,可以设置绘制一系列矢量图作为非点击区域(目前只支持圆形,矩形,多边形)


Implementation
    public function get unHit():Graphics
    public function set unHit(value:Graphics):void
Method Detail
contains()method
public function contains(x:Number, y:Number):Boolean

检测对象是否包含指定的点。

Parameters

x:Number — 点的 X 轴坐标值(水平位置)。
 
y:Number — 点的 Y 轴坐标值(垂直位置)。

Returns
Boolean — 如果包含指定的点,则值为 true;否则为 false。
isHit()method 
public function isHit(x:Number, y:Number):Boolean

是否包含某个点

Parameters

x:Number — x坐标
 
y:Number — y坐标

Returns
Boolean — 是否点击到