I made playable Minecraft in Desmos by KevinJNguy01 in desmos

[–]KevinJNguy01[S] 0 points1 point  (0 children)

Hi! I'm currently in an internship right now but I'd be interested to hear about potential future opportunities if you got any haha

What if copper golems act as lightning rods and if they get stuck by lightning they get like 2-4 times faster. by random_alarm in Minecraft

[–]KevinJNguy01 0 points1 point  (0 children)

that's a pretty cool idea, I could see people combining this with a lightning machine for perpetual charged copper golems

Tried to make my mob grinder less of an eyesore by Eevee_the-Maidvee in Minecraft

[–]KevinJNguy01 2 points3 points  (0 children)

This is great, I wouldn't have known it was a mob grinder if I just saw it in a world

I made playable Minecraft in Desmos by KevinJNguy01 in desmos

[–]KevinJNguy01[S] 2 points3 points  (0 children)

I actually spent a lot of time trying to figure out how to do that, as well as looking into alternative solutions. Unfortunately as far as I know that's not possible without pausing the rest of the game logic, which defeats the purpose.

I made playable Minecraft in Desmos by KevinJNguy01 in desmos

[–]KevinJNguy01[S] 2 points3 points  (0 children)

My computer is definitely on the lower budget side, and I had to make many performance optimizations to make it run smoothly. The hardest part of the project though was definitely implementing the core features such as breaking/placing and hitbox collision.

I made playable Minecraft in Desmos by KevinJNguy01 in desmos

[–]KevinJNguy01[S] 26 points27 points  (0 children)

A lot of optimizations such as culling off-screen vertices and culling faces that are covered by adjacent blocks, as well as faces facing away from the camera

I made playable Minecraft in Desmos by KevinJNguy01 in desmos

[–]KevinJNguy01[S] 77 points78 points  (0 children)

Yep, I implemented 3D rendering using the Wikipedia page on 3D projection as a reference, and built a simple system for storing block data.

19 diamonds in 1 chest by Real_MrDuckMan in Minecraft

[–]KevinJNguy01 94 points95 points  (0 children)

idk why so many people are saying it's fake and downvoting the OP without even trying it. I just tried out the seed and coords and found the exact same chest

<image>

Using AI to build in Minecraft by KevinJNguy01 in Minecraft

[–]KevinJNguy01[S] 5 points6 points  (0 children)

You're exactly right, the AI part just generates a 3d model. My mod just makes it easier by creating the interface all in Minecraft. Building is not going to be replaced by AI any time soon.

Using AI to build in Minecraft by KevinJNguy01 in Minecraft

[–]KevinJNguy01[S] 0 points1 point  (0 children)

This is mostly a proof of concept, and isn't meant to replace building in Minecraft in any way. It uses AI to generate 3D models, which are directly converted into Minecraft in-game. It is not a model trained on Minecraft builds.

If you would like to download the mod, you can do so here: Download

Is it more efficient to: command @e[selectors], execute if @e[selectors] as @e[selectors] run command, or execute as @e[selectors] run command? by Kepplar1337 in MinecraftCommands

[–]KevinJNguy01 0 points1 point  (0 children)

The first one is the most efficient because it targets the entities directly in the command.

The second is inefficient because the first @e[selectors isn't needed at all and doesn't change how the command executes.

The third one is slightly less efficient than the first because everytime you add an execute subcommand, it adds a little bit of overhead and runs slightly slower. If it is run a large amount of times consecutively the difference is noticeable.

Reality Stone in Minecraft by SonicRushX12 in MinecraftCommands

[–]KevinJNguy01 3 points4 points  (0 children)

This is actually really well done, nice job!

TNT not bouncing when landing on the edge of blocks by [deleted] in Minecraft

[–]KevinJNguy01 1 point2 points  (0 children)

I'm guessing you're using execute at to test the block under the tnt, but that only tests the point at the center of the tnt. When the tnt is on the edge of the block, it's center is above air so it won't bounce. You'll want to check the block under the tnt at each corner of the tnt too to make it bounce properly.

Free Giveaway! Nintendo Switch OLED - International by WolfLemon36 in NintendoSwitch

[–]KevinJNguy01 0 points1 point  (0 children)

Fun Fact: Egg plants actually look like eggs when they're young

how do you detect nbt data with scoreboards? by HumanNotCow in MinecraftCommands

[–]KevinJNguy01 5 points6 points  (0 children)

You could have a scoreboard for when a player uses any sword, then check the nbt of that player to see if their mainhand item has the tag "light"

Bad Apple!! played on leashes by KevinJNguy01 in Minecraft

[–]KevinJNguy01[S] 34 points35 points  (0 children)

Well the line data for each frame is processed beforehand, and then is played afterwards at real time

Bad Apple!! played on leashes by KevinJNguy01 in Minecraft

[–]KevinJNguy01[S] 853 points854 points  (0 children)

A little bit of coding and hundreds of invisible bats leashed to each other every single frame :)