だから、基本的に私はhitTestingでこの問題を抱えています.私が行ったすべてのAS3で、私はこのエラーに遭遇したことはありません.私はドラッグアンドドロップで作業しています.非常に簡単です。混乱してエラーが発生するコードは次のとおりです。
if(coin3.hitTestObject(wallet1)) {
coins +=1;
coin3.x -=7000;
}
したがって、このエラーは本当に私を悩ませています。修正する必要があります。ゲームが破壊されています! オブジェクトを変数またはデータ型に割り当てていません。単純に、これを修正するにはどうすればよいですか? ヌルが何かわかりません!コード全体は次のとおりです。
import flash.events.Event;
import flash.events.MouseEvent;
var coins:Number = 0;
var maxcoins:Number = 3;
coin2.addEventListener(MouseEvent.MOUSE_DOWN, coin2drag);
function coin2drag(e:MouseEvent)
{
coin2.startDrag();
}
stage.addEventListener(MouseEvent.MOUSE_UP, coin2undrag);
function coin2undrag(e:MouseEvent)
{
coin2.stopDrag();
}
coin3.addEventListener(MouseEvent.MOUSE_DOWN, coin3drag);
function coin3drag(e:MouseEvent)
{
coin3.startDrag();
}
stage.addEventListener(MouseEvent.MOUSE_UP, coin3undrag);
function coin3undrag(e:MouseEvent)
{
coin3.stopDrag();
}
coin4.addEventListener(MouseEvent.MOUSE_DOWN, coin4drag);
function coin4drag(e:MouseEvent)
{
coin4.startDrag();
}
stage.addEventListener(MouseEvent.MOUSE_UP, coin3undrag);
function coin4undrag(e:MouseEvent)
{
coin4.stopDrag();
}
coin2.addEventListener(Event.ENTER_FRAME, coin2hit);
function coin2hit(e:Event)
{
if (coin2.hitTestObject(wallet1))
{
coins += 1;
coin2.x += 700000;
}
if (coins == maxcoins)
{
gotoAndStop(54);
}
}
coin3.addEventListener(Event.ENTER_FRAME, coin3hit);
function coin3hit(e:Event)
{
if (coin3.hitTestObject(wallet1))
{
coins += 1;
coin3.x += 700000;
}
};
coin4.addEventListener(Event.ENTER_FRAME, coin4hit);
function coin4hit(e:Event)
{
if (coin4.hitTestObject(wallet1))
{
coins += 1;
coin4.x += 700000;
}
};