Kód: Vybrať všetko
if (this.rect.hitTest(this.rect2)) {
this.me_txt.text = "hit";
}K+
Kód: Vybrať všetko
if (this.rect.hitTest(this.rect2)) {
this.me_txt.text = "hit";
}
Kód: Vybrať všetko
_root.onEnterFrame = function():Void {
if (this.rect.hitTest(this.rect2)) {
this.me_txt.text = "hit";
}
};