Commit d432e387 authored by limingzhe's avatar limingzhe

fix: debug

parent ca221bfe
...@@ -511,10 +511,10 @@ cc.Class({ ...@@ -511,10 +511,10 @@ cc.Class({
//调起检测 //调起检测
startTesting() { startTesting() {
this.getPhotoData((data) => { // this.getPhotoData((data) => {
this.photoEnd(data); // this.photoEnd(data);
}); // });
return; // return;
const cw = window.courseware; const cw = window.courseware;
...@@ -4599,10 +4599,10 @@ cc.Class({ ...@@ -4599,10 +4599,10 @@ cc.Class({
const sx = rectNode.width / animaNode.width; const sx = rectNode.width / animaNode.width;
const sy = rectNode.height / animaNode.height; const sy = rectNode.height / animaNode.height;
const scale = Math.min(sx, sy); const scale = Math.min(sx, sy);
animaNode.scale = scale; // animaNode.scale = scale;
// animaNode.active = false; animaNode.active = false;
animaNode.opacity = 20; // animaNode.opacity = 20;
}); });
...@@ -4615,8 +4615,8 @@ cc.Class({ ...@@ -4615,8 +4615,8 @@ cc.Class({
const animationNames = animaNode.animationNames; const animationNames = animaNode.animationNames;
const dragonDisplay = animaNode.dragonDisplay; const dragonDisplay = animaNode.dragonDisplay;
// animaNode.active = true; animaNode.active = true;
animaNode.opacity = 255; // animaNode.opacity = 255;
if (dragonDisplay && animationNames && animationNames.length > 0) { if (dragonDisplay && animationNames && animationNames.length > 0) {
dragonDisplay.playAnimation(animationNames[0], 1); dragonDisplay.playAnimation(animationNames[0], 1);
} }
......
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