We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
for (let e of s) { let A, B; if (use_positions) { let [a_, b_] = e.split(";"); AA.set(a_.split(",")[0].split(' ')); BB.set(b_.split(",")[0].split(' ')); A = AA; B = BB; } else { const a = Math.floor(e / 67108864); const b = e - a * 67108864; const as = vertexOffset + a * 3; const bs = vertexOffset + b * 3; let A = gpu_data.subarray(as, as + 3); let B = gpu_data.subarray(bs, bs + 3); } lineRenderer.pushVertices(A, B); }
correct(delete scoped let):
for (let e of s) { let A, B; if (use_positions) { let [a_, b_] = e.split(";"); AA.set(a_.split(",")[0].split(' ')); BB.set(b_.split(",")[0].split(' ')); A = AA; B = BB; } else { const a = Math.floor(e / 67108864); const b = e - a * 67108864; const as = vertexOffset + a * 3; const bs = vertexOffset + b * 3; A = gpu_data.subarray(as, as + 3); B = gpu_data.subarray(bs, bs + 3); } lineRenderer.pushVertices(A, B); }
The text was updated successfully, but these errors were encountered:
Your suggestion is correct. Can you send in a Pull Request?
Sorry, something went wrong.
No branches or pull requests
correct(delete scoped let):
The text was updated successfully, but these errors were encountered: