当检查一个影片剪辑的位置是否大于舞台的长度时,为什么舞台看起来是偏移的?
例如,要达到舞台的正确边界,我必须写:
if(mc.x >= stage.stageWidth/2||mc.x <= -stage.stageWidth/2){
trace("Boundary hit!");
}
虽然它应该是
if(mc.x >= stage.stageWidth||mc.x <= 0){
trace("Boundary Hit!");
}
为什么?
当检查一个影片剪辑的位置是否大于舞台的长度时,为什么舞台看起来是偏移的?
例如,要达到舞台的正确边界,我必须写:
if(mc.x >= stage.stageWidth/2||mc.x <= -stage.stageWidth/2){
trace("Boundary hit!");
}
虽然它应该是
if(mc.x >= stage.stageWidth||mc.x <= 0){
trace("Boundary Hit!");
}
为什么?