| | 47 | |
|---|
| | 48 | /** @see http://getsatisfaction.com/modestmaps/topics/as3_tile_discontinuity_after_panning */ |
|---|
| | 49 | public override function get x():Number |
|---|
| | 50 | { |
|---|
| | 51 | return this.__x; |
|---|
| | 52 | } |
|---|
| | 53 | |
|---|
| | 54 | /** @see http://getsatisfaction.com/modestmaps/topics/as3_tile_discontinuity_after_panning */ |
|---|
| | 55 | public override function set x(_lx:Number):void |
|---|
| | 56 | { |
|---|
| | 57 | this.__x = _lx; |
|---|
| | 58 | super.x = Math.floor(_lx); |
|---|
| | 59 | } |
|---|
| | 60 | |
|---|
| | 61 | /** @see http://getsatisfaction.com/modestmaps/topics/as3_tile_discontinuity_after_panning */ |
|---|
| | 62 | public override function get y():Number |
|---|
| | 63 | { |
|---|
| | 64 | return this.__y; |
|---|
| | 65 | } |
|---|
| | 66 | |
|---|
| | 67 | /** @see http://getsatisfaction.com/modestmaps/topics/as3_tile_discontinuity_after_panning */ |
|---|
| | 68 | public override function set y(_ly:Number):void |
|---|
| | 69 | { |
|---|
| | 70 | this.__y = _ly; |
|---|
| | 71 | super.y = Math.floor(_ly); |
|---|
| | 72 | } |
|---|