콘텐츠로 건너뛰기

Webmaster

텍스트 편집후 다시 텍스트 선택할 때 오류가 있음

 bool cSPGraphic::IsIn(cVector2i PointInScene, bool AlphaCheck) const{  cVector2i PointInLocal = ToLocal(PointInScene); // 좌표를 지역 좌표계로 변경한다.  if(!Picture.IsNull()){  if(cRecti(DrawOffset, Picture.GetSize()).IsIn(PointInLocal)){   if(AlphaCheck)    return Picture.GetPixel(PointInLocal).a != 0;   return true;  } }  return false;//cRecti(Size).IsIn(Point);}