diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-01-13 10:05:33 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-01-13 10:05:33 +0800 |
commit | 4cc00c26cd6fb11bcd96a3e8416a450302c95e98 (patch) | |
tree | a74e5334594bccc07058db489e570727c3478d2a | |
parent | 51717f873f3d4886871ee4d3537c06bff0c6d021 (diff) | |
download | SoopyV2-4cc00c26cd6fb11bcd96a3e8416a450302c95e98.tar.gz SoopyV2-4cc00c26cd6fb11bcd96a3e8416a450302c95e98.tar.bz2 SoopyV2-4cc00c26cd6fb11bcd96a3e8416a450302c95e98.zip |
fix line being vis thru walls
-rw-r--r-- | features/dungeonSolvers/index.js | 3 | ||||
-rw-r--r-- | metadata.json | 4 | ||||
-rw-r--r-- | utils/renderUtils.js | 6 |
3 files changed, 6 insertions, 7 deletions
diff --git a/features/dungeonSolvers/index.js b/features/dungeonSolvers/index.js index eb14396..2f32888 100644 --- a/features/dungeonSolvers/index.js +++ b/features/dungeonSolvers/index.js @@ -116,8 +116,7 @@ class DungeonSolvers extends Feature { let startPoint = [skullE[f.posX.Entity], skullE[f.posY.Entity], skullE[f.posZ.Entity]] let endPoint = [skullE[f.posX.Entity]+xSpeed2*time, skullE[f.posY.Entity]+ySpeed2*time, skullE[f.posZ.Entity]+zSpeed2*time] let pingPoint = [skullE[f.posX.Entity]+xSpeed2*this.ping, skullE[f.posY.Entity]+ySpeed2*this.ping, skullE[f.posZ.Entity]+zSpeed2*this.ping] - renderUtils.drawLine(startPoint[0], startPoint[1]+2, startPoint[2], endPoint[0], endPoint[1]+2, endPoint[2], 255, 0, 0, 2, false) - + renderUtils.drawLineWithDepth(startPoint[0], startPoint[1]+2, startPoint[2], endPoint[0], endPoint[1]+2, endPoint[2], 255, 0, 0, 2) renderUtils.drawBoxAtBlockNotVisThruWalls(pingPoint[0]-0.5, pingPoint[1]+1, pingPoint[2]-0.5, 0, 255, 0) renderUtils.drawBoxAtBlockNotVisThruWalls(endPoint[0]-0.5, endPoint[1]+1, endPoint[2]-0.5, 255, 0, 0) diff --git a/metadata.json b/metadata.json index 7965be6..ae9d231 100644 --- a/metadata.json +++ b/metadata.json @@ -5,8 +5,8 @@ "entry": "index.js", "description": "Soopy addons v2", "name": "SoopyV2", - "version": "2.1.14", - "versionId": 141, + "version": "2.1.15", + "versionId": 142, "requires": [ "soopyApis", "soopyAddonsData", diff --git a/utils/renderUtils.js b/utils/renderUtils.js index 5c44b92..1491756 100644 --- a/utils/renderUtils.js +++ b/utils/renderUtils.js @@ -35,14 +35,14 @@ module.exports = { b: b * 255 }; }, - drawLine:function (x, y, z, x2, y2, z2, r, g, b, thickness=1, phase=true) { + drawLine:function (x, y, z, x2, y2, z2, r, g, b, thickness=1) { GL11.glBlendFunc(770, 771); GL11.glEnable(GL11.GL_BLEND); GL11.glLineWidth(thickness); GL11.glDisable(GL11.GL_TEXTURE_2D); GL11.glDisable(GL11.GL_DEPTH_TEST); - if(phase)GL11.glDepthMask(false); + GL11.glDepthMask(false); GlStateManager.func_179094_E(); Tessellator.begin(3).colorize(r, g, b); @@ -56,7 +56,7 @@ module.exports = { GlStateManager.func_179121_F(); GL11.glEnable(GL11.GL_TEXTURE_2D); GL11.glEnable(GL11.GL_DEPTH_TEST); - if(phase)GL11.glDepthMask(true); + GL11.glDepthMask(true); GL11.glDisable(GL11.GL_BLEND); }, drawLineWithDepth:function (x, y, z, x2, y2, z2, r, g, b,t) { |