Skip to content

Commit

Permalink
console 지우기
Browse files Browse the repository at this point in the history
  • Loading branch information
EmiliaBaek committed Jan 11, 2024
1 parent b433ef4 commit 9ccc4f1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions sample/cesiumWindSample/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ const Util = (function () {
};

var createTexture = function (options, typedArray) {
console.log(typedArray);
// console.log(typedArray);
if (Cesium.defined(typedArray)) {
// typed array needs to be passed as source option, this is required by Cesium.Texture
var source = {};
source.arrayBufferView = typedArray;
options.source = source;
}
console.log("options", options);
// console.log("options", options);
var texture = new Cesium.Texture(options);
return texture;
};
Expand Down
4 changes: 2 additions & 2 deletions sample/cesiumWindSeoulSample/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ const Util = (function () {
};

var createTexture = function (options, typedArray) {
console.log(typedArray);
// console.log(typedArray);
if (Cesium.defined(typedArray)) {
// typed array needs to be passed as source option, this is required by Cesium.Texture
var source = {};
source.arrayBufferView = typedArray;
options.source = source;
}
console.log("options", options);
// console.log("options", options);
var texture = new Cesium.Texture(options);
return texture;
};
Expand Down

0 comments on commit 9ccc4f1

Please sign in to comment.