I love the fact that at 1:20 when talking about how you predicted the door was exactly 800 blocks away, you corrected yourself and were like "ok it's a bit more, more like 812" only to find out that you were exactly right again.
Mysty in case you weren't already aware, there's a much easier way to do display rotations rather than saving them as Quaternions. And you don't have to use /tp or /rotate. Rather than being a quaternion array like [0f,0f,0f,1f] you can also specify it as an object with an axis, and an angle around that axis. For example: left_rotation:{axis:[0f,1f,0f],angle:1.5708f} The axis is a vector in the +y-direction (vertical), so the rotation will happen in the xz-plane (like a door should). The angle of 1.5708 is just pi/2, in radians, which corresponds to 90 degrees. And then of course the pixel offset toward the end can be handled by the "translation" field, so if you apply both of these changes at the same time, the interpolation between the two states should be pretty smooth. This is, of course, slightly more limiting than using quaternions because you're always fixing an axis (whereas in quaternions I'm pretty sure you can fully specify any 3D rotation not necessarily bound to an axis), BUT this axis method is much easier to think about, especially in a situation like this where you WANT the vertical axis to be fixed.
You could also summon the entity with a {teleport_duration:50} with it translated so the hinge is at the summon location then data merge Rotation:[90F,0F] and it will use the teleport_duration to interpolate between the two.
@@mysticat XD that emote is so adorable, I love it!! You stopping people from going through your door still technically wouldn't make your door a door though ;)
hey! unsure if you'll even remember me but it's completely fine if not since it was a short interaction on YT like 4 years ago basically, before you even changed your name or popped off on TikTok with that bamboo farm tutorial - I posted a comment saying how weird it is that you had so few subscribers and how i just felt that you were going to become popular soon then you replied with something like "oh thank you but idk. been doing this + streaming for such a long time with no results that i really doubt that'll happen" anyways. i just want to say that this complete stranger always believed in you, and felt truly happy by and proud of you all these years. simply keep it up.
Hi Mysticat, I think your plushie has taken over my life. It’s holding me hostage, and the ransom? Memorizing every single Minecraft command! I can’t escape-it has this strange power over me. Day by day, I’m being forced to study every command block trick, every little detail of redstone, and even the most obscure game mechanics. I swear, I’m starting to think in Minecraft code, and my dreams are filled with command strings and endless blocks of text. I’m not sure how much longer I can hold out before I fully transform into a walking, talking command block myself. The plushie might be adorable, but this is getting serious. If you have any tips on how to break free, I’d love to hear them. Until then, I’ll be here, buried under a mountain of Minecraft commands, hoping for a way out. Looking forward to your rescue! P.S. The plushie is cute though, so I guess it’s worth it… but still, save me!
er... I don't think we use that in the western world, it's also limited in china and SOME east asian countries so uh... can we not make another fuss about the other tiktok in china pweese?
Hey Mysti Great video. One thing you could use in the future is the display entity's "teleport_duration" tag. This lets you set tick values of up to 59 so it interpolates for 3 seconds instead of having an instant teleportation. Then you don't need loops and left/right rotation
To make it so that you can put the opening button anywhere, you could do /forceload to constantly load the command block that it's sending it's signal to.
For the issue of it being to far to activate just use a ender pearl status chamber if running the 1.21.2 pre release/snapshots(or use the nether portal chunk loader if not). That way no matter where you are minecraft knows to keep that chunk loaded and would still update entities/blocks etc every tick in that chunk.
@@averyobesebunny7919 ah, gotcha. mc multiplies through for them. that makes sense (i just cba to do the math and naively assumed it was the angle sum then the axis of rotation)
i should explain better. assumed it was in the form [(sin(theta/2)+cos(theta/2),x0i,y0j,z0k] and [(sin(theta/2)+cos(theta/2),-x0i,-y0j,-z0k] than the full expansion of ((sin(theta/2)+cos(theta/2))(x0i+y0j+z0k)p((sin(theta/2)+cos(theta/2))(-x0i-y0j-z0k) or [((sin(theta/2)+cos(theta/2))(x0i+y0j+z0k)expanded out with r,i,j,k] and [((sin(theta/2)+cos(theta/2))(-x0i-y0j-z0k) expanded out with r,i,j,k]
I too thought this would be a simple one and done project when you pitched it at the start, but the maths that dawned on me as I realized how horrible rotating is in minecraft and offsetting and everything that came with that filled me with dread. I do not envy the calculating you had to do for this hahaha
2:38 You said you didn’t know what this (mAh) means- I don’t know if you were being facetious, but just in case, “mAh” means “milliampere-hour,” meaning it could supply an electric current of one milliamp for 10,000 hours, or a current of one amp for 10 hours (assuming it could output its charge at arbitrary rates, which is presumably not true)
Hey mysticat I have a really cool video idea, what about you make some mods and your mod makers play the mod (you and your video developers switch roles) I think it would be really funny!
To remove the jitter you can change the teleport_duration of the block displays to be the time in ticks you want it to take to rotate and then make the command blocks impulse and set the command to rotate the door the entire way! Still a great video as always!
Check out REDMAGIC's Nova Gaming Tablet here! bit.ly/3XGcVtW
What records should I break next?
@@mysticat fastest Minecraft speedrun
Bonjour
Fastest speedrun
Make one about trapdoor
Hiiiiii
I love the fact that at 1:20 when talking about how you predicted the door was exactly 800 blocks away, you corrected yourself and were like "ok it's a bit more, more like 812" only to find out that you were exactly right again.
Maffs 👍
can’t even fail right smh
@@Jeetmon_Zadgeis blud a kid he spelt maths wrong
@@Sassysausage123 It was for comedic effect.
@@Sassysausage123 you must be fun at parties
Great! Now the door only needs a house!
Oh fu-
oh god
Oh no he hearted it that means he liked the idea
@@Bessemastershe*
𝕐𝕖𝕒
Mysty in case you weren't already aware, there's a much easier way to do display rotations rather than saving them as Quaternions. And you don't have to use /tp or /rotate.
Rather than being a quaternion array like [0f,0f,0f,1f] you can also specify it as an object with an axis, and an angle around that axis. For example:
left_rotation:{axis:[0f,1f,0f],angle:1.5708f}
The axis is a vector in the +y-direction (vertical), so the rotation will happen in the xz-plane (like a door should). The angle of 1.5708 is just pi/2, in radians, which corresponds to 90 degrees.
And then of course the pixel offset toward the end can be handled by the "translation" field, so if you apply both of these changes at the same time, the interpolation between the two states should be pretty smooth.
This is, of course, slightly more limiting than using quaternions because you're always fixing an axis (whereas in quaternions I'm pretty sure you can fully specify any 3D rotation not necessarily bound to an axis), BUT this axis method is much easier to think about, especially in a situation like this where you WANT the vertical axis to be fixed.
awesome, ty!!
You could also summon the entity with a {teleport_duration:50} with it translated so the hinge is at the summon location then data merge Rotation:[90F,0F] and it will use the teleport_duration to interpolate between the two.
@@gneissname Oh hey, didn't expect to see you here!
@@mysticatlol
I am baffled
Technically this fails as a door by default due to not preventing people from passing through it when closed.
I will not let them through.
@@mysticat oh-
@@mysticatwhat if ur napping?
@@mysticat XD that emote is so adorable, I love it!!
You stopping people from going through your door still technically wouldn't make your door a door though ;)
@@mysticat mewarrior confirmed?
*Knock Knock*
"Who's there?"
"Mysticat breaking a World Record"
@@JoeFly2009 “Mysticat breaking a World Record who?”
@@TheYelnod "Mysticat breaking a World Record again"
I’m pretty sure slamming this door would obliterate the entire world
CaseOh level of destruction
@@TheMostAdvancedPoketuberEverCaseOh jokes in the big 24 🙏 💔
Mumbo Jumbo without redstone
yeah, mumbo jumbo actually made a big door before lol
real
Still used redstone just not as much
Mumbo jumbo with commands
Jumbo door
Mysti is Mumbo jump but a wizard, Mumbo uses redstone, which is like wire so technology and mysti uses commands which are like spell books.
Which* :D
@@JustPurrfect3 thanks
@@matthewboire6843 No problem
interesting concept!
And the one who you talked about is here exactly misty cat (if i am correct spelling)
You could have added an *interaction entity* to detect a right-click anywhere on the door to activate the opening animation
hey! unsure if you'll even remember me but it's completely fine if not since it was a short interaction on YT like 4 years ago
basically, before you even changed your name or popped off on TikTok with that bamboo farm tutorial - I posted a comment saying how weird it is that you had so few subscribers and how i just felt that you were going to become popular soon
then you replied with something like "oh thank you but idk. been doing this + streaming for such a long time with no results that i really doubt that'll happen"
anyways. i just want to say that this complete stranger always believed in you, and felt truly happy by and proud of you all these years. simply keep it up.
@@GardenOfUna heartwarming
8:10 "It's really quite simple"
I love how mysticat's videos are either "here's something revolutionary and completely mind blowing" or " hehe big door"
1:51 i'm a door?
sorry you had to find out this way
You have always been...
can i open this door?
3:21 your finger nails look so pretty 💅
They're just nails. 🗿
@@ChaoticTechnician no they're pretty nails.
@@ChaoticTechnician they’re nails with paint on them.
also what’s the 🗿 for you didn’t even say anything smart
Omg you're right ❤
found this while searching how to repair my door, instructions unclear
She’s gone _unhinged_
@@J0R1AN she?
@@chaoslabj yeah, its she/they
I always thought mysticat was a very high pitched boy
@@nikolepiko
Nah, it's a girl
love how everytime someone says “she” everyone is so confused
Hi Mysticat,
I think your plushie has taken over my life. It’s holding me hostage, and the ransom? Memorizing every single Minecraft command! I can’t escape-it has this strange power over me. Day by day, I’m being forced to study every command block trick, every little detail of redstone, and even the most obscure game mechanics. I swear, I’m starting to think in Minecraft code, and my dreams are filled with command strings and endless blocks of text.
I’m not sure how much longer I can hold out before I fully transform into a walking, talking command block myself. The plushie might be adorable, but this is getting serious. If you have any tips on how to break free, I’d love to hear them. Until then, I’ll be here, buried under a mountain of Minecraft commands, hoping for a way out.
Looking forward to your rescue!
P.S. The plushie is cute though, so I guess it’s worth it… but still, save me!
@@Mewothetoaster good luck soldier 🫡
your handle is even mewothetoaster
@@Alex_192. Tis the truth
@@Mewothetoaster in what world is that a bad thing
@@Cool78250 i mean, it's not lol
*mewo has been spotted*
Love the giant door, thanks for the videos
tysm!! :D
Imagine some poor village, thousands of blocks away, and they just see an absolutely humongous door appear, and just manically move around.
The cat is makeing history again!
(Maybe the biggest book next? [the magic book form the enchanting table])
At 5:46 the video buffered as you pressed the lever and I actually thought a negative rotation caused a game crash.
4:24 "Xiao Hong Shu" ahh door
Yapdola
er...
I don't think we use that in the western world, it's also limited in china and SOME east asian countries so uh...
can we not make another fuss about the other tiktok in china pweese?
@@Braveplantt what you yapping about
@@Braveplantt Its literally a meme from Yapdollar too, it does what the door at that time stamp does and says "Xiao Hong Shu"
ahhhh yes, the fabled "Little Red Book". The site of the rich showoffs.
(i get the joke, nice one XD)
close the door behind youuu~
*insert omega loud door noises*
oh sh-whoops, the floor just split in two
Read More
5:53 you’ve created circles in Minecraft four times now😂
0:06 wAy bIGgeahr 😩😩😩
Hey Mysti
Great video. One thing you could use in the future is the display entity's "teleport_duration" tag. This lets you set tick values of up to 59 so it interpolates for 3 seconds instead of having an instant teleportation. Then you don't need loops and left/right rotation
how to basic collab when?
"how to open largest minecraft door"
This is how I found out Mysticat transitioned
did you not watch her for years or something
@@tauon_yes
7:00 I like how you put Berdly's theme when the epic math started
To make it so that you can put the opening button anywhere, you could do /forceload to constantly load the command block that it's sending it's signal to.
4:52 I don't know what kind of house your grandma has but I Wanna live there.
For the issue of it being to far to activate just use a ender pearl status chamber if running the 1.21.2 pre release/snapshots(or use the nether portal chunk loader if not). That way no matter where you are minecraft knows to keep that chunk loaded and would still update entities/blocks etc every tick in that chunk.
Wow A Smart Person
you have the sweetest laugh out there qwq
youtuber: breaks minecraft record
mysticat: command blocks go brrr
Is this what tall people use?
4:38 pov: this its in a minecraft server and you see a GAINT oak door comming your way
Pov:
You're don't feet in normal door
Pardon me, but did you mean to say:
POV: You don't fit in a normal door
Nearly fricking died trying to read that originally :0
i always feet normal doors
she normal on my door till I feet
4:00 Quaternions are awful to work with
Check out howzieky (sorry if I misspelled)
if I understand correctly (assuming i,j,k maps to minecrafts x,y,z) it should be roughly [1.41421356,0,1,0] and [1.41421356,0,-1,0]
@@Moonlite_Kitsune It should be (0,sqrt(2)/2,0,sqrt(2)/2) to rotate pi/2 around the y-axis
@@averyobesebunny7919 ah, gotcha. mc multiplies through for them. that makes sense (i just cba to do the math and naively assumed it was the angle sum then the axis of rotation)
i should explain better. assumed it was in the form [(sin(theta/2)+cos(theta/2),x0i,y0j,z0k] and [(sin(theta/2)+cos(theta/2),-x0i,-y0j,-z0k] than the full expansion of ((sin(theta/2)+cos(theta/2))(x0i+y0j+z0k)p((sin(theta/2)+cos(theta/2))(-x0i-y0j-z0k) or [((sin(theta/2)+cos(theta/2))(x0i+y0j+z0k)expanded out with r,i,j,k] and [((sin(theta/2)+cos(theta/2))(-x0i-y0j-z0k) expanded out with r,i,j,k]
that door is big.
0:44 HEHE THAT LAUGHTER WAS CUTE.....!!!
Sounded like crying
@@Uzitheunofficial Actually...???
Yes
@@NanoGamerz-OPyes
I too thought this would be a simple one and done project when you pitched it at the start, but the maths that dawned on me as I realized how horrible rotating is in minecraft and offsetting and everything that came with that filled me with dread. I do not envy the calculating you had to do for this hahaha
2:38 You said you didn’t know what this (mAh) means- I don’t know if you were being facetious, but just in case, “mAh” means “milliampere-hour,” meaning it could supply an electric current of one milliamp for 10,000 hours, or a current of one amp for 10 hours (assuming it could output its charge at arbitrary rates, which is presumably not true)
I love that the clouds are just three pixels above the ground XD
Getting me interested in just building a massive Minecraft house for no reason.
2:35 its Mili Amper Hour
.Unit for measuring electric current intenesty . Most phones have 5000 so 10100 is pretty good 👍
You have an absurdly good sense of Minecraft scale wow
2:18 Arknigthts jumpscare
"Dude do you see that huge tower"
"That's not a tower that's a"
8:03 caseoh's smallest door for his blood cell
Thats a special door right there! 5:02
“Oh yeah, that’s how doors work”
The crayon stylist is so Mysticat…but it needs to be orange since your nails are blue
Imagine the creaking from this at 1:00am
Very nice and very big. Too bad you can just walk through it if it's closed though.
2:29 I need that keyboard
Hey mysticat I have a really cool video idea, what about you make some mods and your mod makers play the mod (you and your video developers switch roles) I think it would be really funny!
How the short friend gets into their home:
3:10 cool keyboard
"thats how my gramma's door works" got me dying
small tbh
yeah its very small. a tic tac is bigger then that door
Lol it is indeed small in comparison to your gigantic door
big door big door
Genuinely, I thought this was an old video
make minecraft in minecraft using nothing but giant doors and command blocks
I love it when a huge door materializes out of nowhere. :D
=^3^= Mewo! I hope everyone reading this has a wonderful day!
mysticat didn't know that big block appeared and was suprised
exceptionally large entrance
To remove the jitter you can change the teleport_duration of the block displays to be the time in ticks you want it to take to rotate and then make the command blocks impulse and set the command to rotate the door the entire way! Still a great video as always!
3:48 end of sponsor :3
Why would you wanna skip past her really cool nails 💅
@@Cera_01yeah i legit rewatched half the sponser
He's a man@@Cera_01
I see your skin finally got surgically rearranged back to normal
7:49 AH 🗣️🗣️🗣️ !!
AH
Can't wait for the largest working iron door
you can also play sounds with commands I think. maybe play a REALLY loud door sound when you open/close it.
800 blocks and… what is that? 12? I’ve played this game too much.
Now this would be the perfect door for trick or treating
2:24 NO WAY MYSTICAT HAND REVEAL
@@Joi0us not to be rude or anything but we have had a hand reaveal before
@ oh…
mAh means milliampere-hour. Its how many Amps the battery can output continuously for 1 hour, multiplied by 1000, because big number big good
i seriously didnt watch this for like some time just because i thought it was an old video
8:14 Wow it’s very very simple 😂
Now give it colison
Now make a house out of it
the door doesn't work because it has no collision, it can't work as a door to block things!
Giant door? Father (FMAB 2009) is that you??
We learning The Truth with this one
you use this door for the world smallest house
My first Reaction when you added the first Lower door
"ATTACK ON TITAN?!??!"
The real thousand year door...
The leafy greens in my salad were drowning in ranch, so I put broccoli in the bowl but it only made it worse.
😭😭😭
I love your nails. Suuuuper cute colour :3
You should have offset the rotation center point instead of moving the door!
In the background of the ad, that keyboard is awesome. Enjoyed the video.
OMG FINALY HE POSTED AFTER ALL THIS TIME
*she
*She
I meant she it was a typo guys
@@MaxMax-tg2gr oh ok np then
@@MaxMax-tg2gr Oh, okay
Now make big house to big door!!!
Make a house at the scale of the door
me: slams door
*giant dad appears*
Me that made a giant trapdoor a month ago: huh-
WOW! This door is very super mega HUGE
Idk how you made this video entertaining but yeah that was a fun video Mysty!
2:50 owo