Commit 3ce50766 authored by limingzhe's avatar limingzhe

fix: debug

parent f3a88573
This diff is collapsed.
...@@ -964,10 +964,12 @@ cc.Class({ ...@@ -964,10 +964,12 @@ cc.Class({
const item = getSprNode('bg_di'); const item = getSprNode('bg_di');
const topH = this.canvas.height * 0.01;
const svNode = cc.find('Canvas/recordItemList'); const svNode = cc.find('Canvas/recordItemList');
svNode.width = item.width; svNode.width = item.width;
svNode.height = 700 * this._mapScaleMin; svNode.height = this.canvas.height - topH
svNode.y = 0 // 100 * this._mapScaleMin; svNode.y = -topH / 2 // 100 * this._mapScaleMin;
svNode.x = this.canvas.width / 4 + 10 * this._mapScaleMin;// - (item.width / 2 + 10) * this._mapScaleMin; svNode.x = this.canvas.width / 4 + 10 * this._mapScaleMin;// - (item.width / 2 + 10) * this._mapScaleMin;
...@@ -2092,7 +2094,6 @@ cc.Class({ ...@@ -2092,7 +2094,6 @@ cc.Class({
}) })
vPlayer.node.on('ready-to-play', () => { vPlayer.node.on('ready-to-play', () => {
console.log(' in ready-to-play') console.log(' in ready-to-play')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment