Skip to content

Commit

Permalink
removed comments#
Browse files Browse the repository at this point in the history
  • Loading branch information
ReneeIbeji committed May 7, 2024
1 parent 84ba94b commit f85c021
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions sources/chargen.js
Original file line number Diff line number Diff line change
Expand Up @@ -659,15 +659,13 @@ $(document).ready(function() {
const previewToDraw = {};
previewToDraw.link = $(this).data(`layer_1_${getBodyTypeName()}`);
previewToDraw.zPos = $(this).data(`layer_1_zpos`);
console.log("1. " + $(this).data(`layer_1_zpos`));
layers.push(previewToDraw);

for(jdx =2; jdx < 10; jdx++){
if($(this).data(`layer_${jdx}_${getBodyTypeName()}`)){
const previewToDraw = {};
previewToDraw.link = $(this).data(`layer_${jdx}_${getBodyTypeName()}`);
previewToDraw.zPos = $(this).data(`layer_${jdx}_zpos`);
console.log( jdx + ". " + $(this).data(`layer_${jdx}_zpos`));

layers.push(previewToDraw);
} else {
Expand Down

0 comments on commit f85c021

Please sign in to comment.