- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
public function Square()
{
_image = new Image();
_image.smoothBitmapContent = true;
_mask = new Image();
Level.instance.addEventListener("squaresCreated", squareCreatedHandler);
}
/*
* Добавляет монстров на field по событию "squaresCreated".
* Почему эта логика не в field не ебу.
*/
private function squaresCreatedHandler(evt:Event):void
{
if (isMonster)
{
Level.instance.field.addChild(_fieldMonster);
_fieldMonster.x = this.x;
_fieldMonster.y = this.y;
}
}
kxKIHhJ 25.08.2021 04:57 # 0