|
发表于 2008-7-14 23:26:25
|
显示全部楼层
既然你诚心滴问了
我就告诉你吧
这个不是BUG
[jass]
function GetPlayableMapRect takes nothing returns rect
return bj_mapInitialPlayableArea
endfunction
[/jass]
于是呢
RemoveRect()的时候你把 bj_mapInitialPlayableArea给搞掉了
于是以后都会出错了
说明白点就是那个不能清除的
那你又想知道bj_mapInitialPlayableArea怎么来的么?
其实他就素
[jass]
Rect(GetCameraBoundMinX()-GetCameraMargin(CAMERA_MARGIN_LEFT), GetCameraBoundMinY()-GetCameraMargin(CAMERA_MARGIN_BOTTOM), GetCameraBoundMaxX()+GetCameraMargin(CAMERA_MARGIN_RIGHT), GetCameraBoundMaxY()+GetCameraMargin(CAMERA_MARGIN_TOP))
[/jass]
可惜这个区咩有加分口牙
失望ing |
|