Skip to content

Commit

Permalink
[FIX] loadSceneSettings uses correct method.
Browse files Browse the repository at this point in the history
  • Loading branch information
daredevildave committed Aug 12, 2015
1 parent a60237f commit 8513c24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/framework/framework_application.js
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ pc.extend(pc, function () {
loadSceneSettings: function (url, callback) {
this.loader.load(url, "scenesettings", function (err, settings) {
if (!err) {
this.updateSceneSettings(settings);
this.applySceneSettings(settings);
if (callback) {
callback(null);
}
Expand Down

0 comments on commit 8513c24

Please sign in to comment.