Skip to content

Commit

Permalink
让目标点更好看些
Browse files Browse the repository at this point in the history
  • Loading branch information
jackylvm committed Jan 25, 2019
1 parent 5c9c11e commit 5852716
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions assets/script/prefab/CMousePoint.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* File Created: 2018-12-19 09:49:37
* Author: Jacky ([email protected]>)
* -----
* Last Modified: 2018-12-19 16:52:12
* Last Modified: 2019-01-25 17:24:48
* Modified By: Jacky ([email protected]>)
* -----
* Copyright 2018 上海火刀石网络科技有限公司
Expand Down Expand Up @@ -32,12 +32,12 @@ cc.Class({

_graphics.clear();

var radius = 5;
var radius = 4;
_graphics.circle(0, 0, radius);
_graphics.moveTo(-(radius + 4), 0);
_graphics.lineTo(radius + 4, 0);
_graphics.moveTo(0, radius + 4);
_graphics.lineTo(0, -(radius + 4));
_graphics.moveTo(-(radius + 2), 0);
_graphics.lineTo(radius + 2, 0);
_graphics.moveTo(0, radius + 2);
_graphics.lineTo(0, -(radius + 2));
_graphics.stroke();
},
// update (dt) {},
Expand Down

0 comments on commit 5852716

Please sign in to comment.