Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
biud436 committed Apr 24, 2016
1 parent e5efa8a commit 06f0749
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions HUD/RS_HUD.js
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ function HUD() {
set: function(value) {
this.children.forEach( function(i) {
i.visible = value;
}.bind(this));
}, this);
RS.HUD.show = value;
},
});
Expand All @@ -310,7 +310,7 @@ function HUD() {
set: function(value) {
this.children.forEach( function(i) {
i.opacity = value.clamp(0, 255);
}.bind(this));
}, this);
RS.HUD.opacity = value.clamp(0, 255);
},
});
Expand Down
14 changes: 7 additions & 7 deletions HUD/RS_HUD_4m.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ var RS = RS || {};
if(!!$gameParty.members()[index]) {
this.stage.addChild(new HUD({szAnchor: item, nIndex: index}));
}
}.bind(this));
}, this);
this.sort();
this.show = $gameSystem._rs_hud.show;
}
Expand All @@ -156,7 +156,7 @@ var RS = RS || {};
var self = this.stage;
this.stage.children.forEach(function(i) {
this.stage.removeChild(i);
}.bind(this));
}, this);
this.drawAllHud();
this.show = $gameSystem._rs_hud.show;
}
Expand All @@ -176,7 +176,7 @@ var RS = RS || {};
set: function(value) {
this.stage.children.forEach( function(i) {
i.visible = value;
}.bind(this));
}, this);
$gameSystem._rs_hud.show = value;
},
});
Expand All @@ -188,7 +188,7 @@ var RS = RS || {};
set: function(value) {
this.stage.children.forEach( function(i) {
i.opacity = value.clamp(0, 255);
}.bind(this));
}, this);
$gameSystem._rs_hud.opacity = value.clamp(0, 255);
},
});
Expand Down Expand Up @@ -426,7 +426,7 @@ var RS = RS || {};
set: function(value) {
this.children.forEach( function(i) {
i.visible = value;
}.bind(this));
}, this);
$gameSystem._rs_hud.show = value;
},
});
Expand All @@ -438,7 +438,7 @@ var RS = RS || {};
set: function(value) {
this.children.forEach( function(i) {
i.opacity = value.clamp(0, 255);
}.bind(this));
}, this);
$gameSystem._rs_hud.opacity = value.clamp(0, 255);
},
});
Expand Down Expand Up @@ -485,7 +485,7 @@ var RS = RS || {};
_Scene_Boot_loadSystemImages.call(this);
preloadImportantFaces.forEach(function(i) {
ImageManager.loadFace(i);
}.bind(this));
}, this);
}

var alias_Game_Interpreter_pluginCommand = Game_Interpreter.prototype.pluginCommand;
Expand Down
4 changes: 2 additions & 2 deletions Laboratory/Scene_RotateTitle.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
*/

var Imported = Imported || {};
Imported.Scene_RotateTitle = true;
Imported.Scene_RotateTitle = true;


/**
Expand Down Expand Up @@ -207,7 +207,7 @@ var RS = RS || {};
i.scale.set(1.0,1.0);
i.tint = 0xFFFFFF;
}
}.bind(this));
}, this);

};

Expand Down
2 changes: 1 addition & 1 deletion Online/Client/RS_Net_Module.js
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ function ChatBox() {
// 텍스트 추가
$gameMessage._textList.forEach( function(nowText, index, array) {
this.drawTextEx(nowText, 0, (index) * 20);
}.bind(this));
}, this);

}
};
Expand Down
2 changes: 1 addition & 1 deletion RS_ItemStream.js
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,6 @@ Imported.RS_ItemStream = true;
break;
}
}
}
};

})();
2 changes: 1 addition & 1 deletion RS_ParallaxTitleEx.js
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ var RS = RS || {};
// 원래 색조로
i.tint = 0xFFFFFF;
}
}.bind(this));
}, this);

};

Expand Down
2 changes: 1 addition & 1 deletion RS_ResourceUpdate.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ RS.Net = RS.Net || {};
this.downloadData(picPath, data, function() {
console.log( Math.floor(((req++) / length) * 100));
});
}.bind(this));
}, this);
} catch(e) {
console.log("다운로드 실패");
}
Expand Down
2 changes: 1 addition & 1 deletion RS_WalkingStepSound.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ Imported.RS_WalkingStepSound = true;
if(i.match(/<Step Sounds>/i)) {
RSMatch._init = true;
}
}.bind(this));
}, this);
}

RSMatch.requestSound = function(type) {
Expand Down

0 comments on commit 06f0749

Please sign in to comment.