From 502cf72a7e51d4682194ecca2b9fde7881ef21da Mon Sep 17 00:00:00 2001 From: logsol Date: Sun, 28 Aug 2016 13:24:27 +0200 Subject: [PATCH] fixes #157 --- app/Game/Client/View/Pixi/Layers/Ghost.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/Game/Client/View/Pixi/Layers/Ghost.js b/app/Game/Client/View/Pixi/Layers/Ghost.js index f45635d..9377e59 100644 --- a/app/Game/Client/View/Pixi/Layers/Ghost.js +++ b/app/Game/Client/View/Pixi/Layers/Ghost.js @@ -36,10 +36,10 @@ function (Parent, PIXI, Nc, Settings) { arrow.visible = false; this.container.addChild(arrow); - var width = 12, - height = 12; + var width = 10, + height = 10; - arrow.beginFill(0xffffff, 0.1); + arrow.beginFill(0xffffff, 0.4); arrow.lineStyle(0, 0x000000); arrow.moveTo(0, 0); arrow.lineTo(width, 0); @@ -56,7 +56,7 @@ function (Parent, PIXI, Nc, Settings) { Ghost.prototype.onUpdatePlayerArrow = function(arrow, options) { var offsetX = 0, - offsetY = -60, + offsetY = -55, x = offsetX + options.x, y = offsetY + options.y;