To answer 1 from a game dev standpoint: Terraria uses continuous collision detection, as opposed to discrete. This makes it so, on top of checking if the space you are going to occupy the next frame is free, it also checks if there are any solid blocks along the way to that location. If there are, you won't get moved to the other side of the wall but instead stop right before it.
That's a really understandable answer to the question; I just assumed that it would use a collision check similar to that of, say, Super Mario 64 where collision checks only see if the coordinate the player will occupy on the next gametick is a valid tile.
@@thatgi3817 continuous collision detection is somewhat more computationally expensive, which makes it much more common in newer games than older ones. It's also what absolutely needs to be used for very fast moving things, such as bullet projectiles in games that use actual projectiles and not just hitscan. This includes all guns in Terraria.
Well, idk what sorta detection they use for world borders, but when moving fast enough you can exiy the left or right borders of the world which is kinda cool.
isnt it the same as in windows in shooters? like the window lets you see through the the code has to go back where the bullet came from to figure out if it penetrated any windows or even doors
I really thought you can pass through blocks, since with inner tube and portal gun you can reach so much speed, that you somehow pass through the ceiling of the speed-up chamber
I was gonna say this too, I think it’s just a matter of speed. I don’t know of any other way to go that fast so I wouldn’t be surprised if it’s not able to be done any other way
i'd personally enjoy this as an occasional series. kinda hate the concept of shorts in general (and didn't even know you'd made any lol), so it'd be nice to get a compilation like this whenever you think you've got enough random tidbits to add to one.
Btw, wdym by "start with a miner build"? Do you use that one mod that allows you to change what you start with, do you give yourself stuff at the start, or do you just mean you focus on mining stuff/getting mining gear at the start?
@@venomousslime6797 First thing I do is make an underground farm to grind mining gear and bone pickaxe, find an ancient chisel, and make mining potions/get the slice of cake buff
In older versions (particularly mobile) it was possible to use a jetpack to launch yourself through a one block thick ceiling. I know because I designed my house around it as a kid.
Hey Terrasteel, I have a question. Can the same results for question 5 be reached using the nightmare pickaxe with the same buffs?(And the mining armour set, i grinded for it and added it in armour group 2) Because if so I guess I discovered that answer without realising it... Cool video dude.
No. The Nightmare Pickaxe has a tool speed of 15, reduced to 12 with the Light Reforge. With a maximum 70% mining speed boost, this is reduced to a tool speed of 3 (20 strikes per second).
Personally I like this a lot more than shorts. Just five small fun questions answered in a short and quick vid. If you got other small time ideas this I wouldn't mind more of these 5 questions videos.
I'm pretty sure it's possible to get through the block. But in a very specific condition. If you modify the speed of the minecart in multiplayer you can fly through the blocks if they do not have time to load. P.s you need to be mid flight to do that.
I don't watch shorts (they hurt my brain and my eyes and my ears), so thank you sincerely for putting this into a full video. Some of these (like the mining range) I had asked, but not tested properly; others (like the piercing of luminite bullets) never entered my brain, but all of it was interesting. Maybe we could see some more Grabbler-esque "too short/boring for its own video" content down the line?
1:25 I assume they draw a line between positions that has the ability to collide with blocks and use that to see where you collided. 2:50 show us the unedited script please 5:01 rockets have the most range though
cant the max mining speed be even higher using other accessories that boosts melee speed like the feral claws and other accessories reforged to violent?
i passed this video up on my recommended about 3 times until i finally gave in, and it was so worth it. the thumbnail made it seem really unappealing for whatever reason
I actually found the answer to question 1 on accident using a large tower of water, the pool floaty ring thing, and the Portal gun. I went straight through the top of the tower.
Mining speed boosts are hard capped at 70%, because of that it is probably safer to use more protective gear, as great as 30% is towards that cap 6 defense is not very great.
did it possible to vent through block moving fast enough? yeah, remember infinity damage machine through water, inner tube, lance and bunch of teleports (above this machine is alotta block which provide you to do not accelerate out of machine)
phasing through block is possible but i dont know if its because of a mod or old version of terraria. in 1.1.2 when i was playing The Story of Red Cloud mod, at the end of the game there was a beam weapon that was pushing you the opposite way of shooting at the very high speeds and could cause you to phase into mountain and get stuck.
They're definitely better here, many people (granted, sample size of 1) don't care for shorts because of the UI. I wouldn't know these things if you released this as 5 shorts.
I'd assume terraria handles collisions with a sort of hitbox smear behavior where if you're moving really fast and creating a large disposition every tick it's checking everywhere between where your hitbox was and will be to calculate the collisions... that's not worded well but I'm just assuming anyways so whatever.
No, that doesn’t affect swing speed. It halves the swings needed to break blocks - this means the Bone Pickaxe would take one hit to break stone instead of two, but the mining speed in strikes per second is unaffected.
@Terraw does moving fast enough to clip through a block only work vertically? In mappygaming's first video showcasing innertube plus lance, he clips through the block his portal is placed on while only moving at 270mph
how do i increase maxinum screen size in mobile terraria related to resolution (oh boy phone managing stuff, its near impossible to have an answer not being "you press zoom out button" but increase maxinum zoom.)
It's possible to phase through blocks, and you need to be moving fast (Hermes Boots only), but also need a slope or one-block gap. You can fall through a 1-block wide gap if you run into a wall while holding S.
I still got ejected through blocks by mappy's railgun, can you explain how? I am pretty curious why did that work like that, thank you! Edited : It has not much range, I am guessing that might be teleporter doing something? In the same condition, I got blocked with 5000mph, but go through blocks with 6000+ mph🤔
Okay probably at least one other person than me asked, but maybe that's the April Fool
Become a catboy
Now
@@Squircul thats so skibidi
@@Squircul As a rock, I approve this message.
@@Squirculpeople have drawn him as a catboy before
@@PenguinMan320ok cool but where’s the link?
Not everyone might asked but I wanted to know all of their answers
To answer 1 from a game dev standpoint: Terraria uses continuous collision detection, as opposed to discrete. This makes it so, on top of checking if the space you are going to occupy the next frame is free, it also checks if there are any solid blocks along the way to that location. If there are, you won't get moved to the other side of the wall but instead stop right before it.
i think that's basically how the disonnant hook works
That's a really understandable answer to the question; I just assumed that it would use a collision check similar to that of, say, Super Mario 64 where collision checks only see if the coordinate the player will occupy on the next gametick is a valid tile.
@@thatgi3817 continuous collision detection is somewhat more computationally expensive, which makes it much more common in newer games than older ones. It's also what absolutely needs to be used for very fast moving things, such as bullet projectiles in games that use actual projectiles and not just hitscan. This includes all guns in Terraria.
Well, idk what sorta detection they use for world borders, but when moving fast enough you can exiy the left or right borders of the world which is kinda cool.
isnt it the same as in windows in shooters?
like the window lets you see through the the code has to go back where the bullet came from to figure out if it penetrated any windows or even doors
I asked, i care
We found him. The guy who asked
WE FOUND WHO ASKED 🗣️🗣️🗣️🗣️🗣️🗣️🔥🔥🔥🗣️🔥🗣️🔥🗣️🔥🗣️🔥🗣️🗣️🗣️🗣️🗣️🔥🔥🔥🔥🔥🔥🗣️🔥🗣️🔥🗣️🔥🗣️🔥🗣️🔥
Thank you a cup of joe 🙏🏻🙏🏻🔥
Xeroc look, we found them 🗣️
Finally i found you
I prefer this format over shorts any day! (Plus you can always reformat this into 5 shorts later, if needed.)
"A good teacher does not wait for the student to ask"
-Sun Tzu, art of Terraria
"People never said this shit"
-Empress of Light, Prismatic Ruler of Hallow
@@Meowlegend7"Empress of Light stop lying, I was there when they said it"
-Moonlord
@@NothingAtall-xe4vc"When did they said that? Are you Schizophrenic?"
-Golem, idol of Lihzard clan
"You guys shut up before I take out my Zenith."
-Terrarian
"You're already dead."
- Dungeon Guardian
Stardew valley music is so good as background for terraria videos
il take note of that shadowbeam fact in case i need to win an arguement, thanks
I really thought you can pass through blocks, since with inner tube and portal gun you can reach so much speed, that you somehow pass through the ceiling of the speed-up chamber
I was gonna say this too, I think it’s just a matter of speed. I don’t know of any other way to go that fast so I wouldn’t be surprised if it’s not able to be done any other way
4:13 This made me realize how similar the designs for the laser drill and DCU are.
This rocks, I love stardew valley caves ost
I think Question 5 is pretty helpful,the quickest Hellevator
i'd personally enjoy this as an occasional series.
kinda hate the concept of shorts in general (and didn't even know you'd made any lol), so it'd be nice to get a compilation like this whenever you think you've got enough random tidbits to add to one.
0:54 Better yet, do we need to talk about parallel universes
I have actually passed through blocks and ended up pretty deep underground using the Burden Breaker that was in Calamity at one point
How is summon knockback works? Got curious
its 2 in the morning but i woke up to your video notif
lmao
Good morning
5:50 wat about mining armor set? extra 30%?
It can be substituted for any of the other 3, but there is a cap at 70% total
The pre-hardmode mining speed is my favorite thing to do with a new character. I always start with a miner build so I can speedrun farms and stuff.
Btw, wdym by "start with a miner build"? Do you use that one mod that allows you to change what you start with, do you give yourself stuff at the start, or do you just mean you focus on mining stuff/getting mining gear at the start?
@@venomousslime6797 First thing I do is make an underground farm to grind mining gear and bone pickaxe, find an ancient chisel, and make mining potions/get the slice of cake buff
In older versions (particularly mobile) it was possible to use a jetpack to launch yourself through a one block thick ceiling. I know because I designed my house around it as a kid.
That reminds me how you can use dashing items to go down or up one block holes that are right next to walls.
1 Video = 5 Shorts. Good to know
I was not expecting that.
Hey Terrasteel, I have a question. Can the same results for question 5 be reached using the nightmare pickaxe with the same buffs?(And the mining armour set, i grinded for it and added it in armour group 2)
Because if so I guess I discovered that answer without realising it... Cool video dude.
No. The Nightmare Pickaxe has a tool speed of 15, reduced to 12 with the Light Reforge.
With a maximum 70% mining speed boost, this is reduced to a tool speed of 3 (20 strikes per second).
@@Terraw happy to know I reached 2nd fasted speed in pre-hardmode!
This should be made into a series
Personally I like this a lot more than shorts. Just five small fun questions answered in a short and quick vid. If you got other small time ideas this I wouldn't mind more of these 5 questions videos.
I'm pretty sure it's possible to get through the block. But in a very specific condition. If you modify the speed of the minecart in multiplayer you can fly through the blocks if they do not have time to load.
P.s you need to be mid flight to do that.
Hope u had a good Easter terra
MY QUESTION IS WHERE DID THE KRAKEN GO ON THE TERRARIA STORE AND WHEN WILL THE REAL-LIFE MEOWMERE COME BACK RAHHHHHHHHH
If you like Terraria, and you are a nerd, YOU ASKED!!
it's the botania guy
I don't watch shorts (they hurt my brain and my eyes and my ears), so thank you sincerely for putting this into a full video. Some of these (like the mining range) I had asked, but not tested properly; others (like the piercing of luminite bullets) never entered my brain, but all of it was interesting. Maybe we could see some more Grabbler-esque "too short/boring for its own video" content down the line?
Ok so fun fact about the first one, projectiles actually can phase through blocks if they're traveling fast enough, just not entities
Im glad you didn't make these into shorts I probably would have never seen this information if you released them as shorts
loving the textures used in this video
1:25 I assume they draw a line between positions that has the ability to collide with blocks and use that to see where you collided.
2:50 show us the unedited script please
5:01 rockets have the most range though
cant the max mining speed be even higher using other accessories that boosts melee speed like the feral claws and other accessories reforged to violent?
i passed this video up on my recommended about 3 times until i finally gave in, and it was so worth it. the thumbnail made it seem really unappealing for whatever reason
I actually found the answer to question 1 on accident using a large tower of water, the pool floaty ring thing, and the Portal gun. I went straight through the top of the tower.
thank you for having proper captions :)))
This could be a good series, my man.
I only noticed after watching this video that most if not all summons WILL phase through blocks if they move at high speed. Noice.
Surely there is someone in a large Terraria world that had asked such questions?
omg kepple big fan
You forgot exquisitely stuffed for the mining speed.
The miners set provides a mining buff. The entire set is obtainable in prehardmode
Mining speed boosts are hard capped at 70%, because of that it is probably safer to use more protective gear, as great as 30% is towards that cap 6 defense is not very great.
what about the miner armor set bonus in pre-hardmode?
you can phase through blocks if you use the inner tube and portal gun in a tower with water and a 1 block tall roof
did it possible to vent through block moving fast enough? yeah, remember infinity damage machine through water, inner tube, lance and bunch of teleports (above this machine is alotta block which provide you to do not accelerate out of machine)
2022 terrasteel: skyblock sweat nolife
phasing through block is possible but i dont know if its because of a mod or old version of terraria. in 1.1.2 when i was playing The Story of Red Cloud mod, at the end of the game there was a beam weapon that was pushing you the opposite way of shooting at the very high speeds and could cause you to phase into mountain and get stuck.
interesting + I asked + very cool + W + your channel is growing + you're young + you're handsome + wrinkled brain
keep making em like this.
I would have never watched the shorts.
Calculate terrarias orbit using solar eclipse and blood moon stuff
you forgot mining armor from undead miners that increases mining speed further
phasing through blocks used to be possible in 1.3 but devs fixed it
What mod do you use to get all that extra info by the Cell Phone data at 1:24?
I believe it is called Character Stats or something
They're definitely better here, many people (granted, sample size of 1) don't care for shorts because of the UI. I wouldn't know these things if you released this as 5 shorts.
I’m avoiding class to watch this.
Based 😎
Draedon, summon the Exo Mechs to destroy this guy
@@Meowlegend7 Summon the Sepulcher >:)
stardew valley music,,,, verygud choice brother,,
I can phase through blocks when I'm going fast, because my slow computer can't load the ground fast enough.
what about that one glitch with the minecart u went absurdly fast and could phase through golem's temple?
Here's something I've been wondering…
Why's your character so darn cute? (:
I'd assume terraria handles collisions with a sort of hitbox smear behavior where if you're moving really fast and creating a large disposition every tick it's checking everywhere between where your hitbox was and will be to calculate the collisions... that's not worded well but I'm just assuming anyways so whatever.
Golfcart horsepower when?
p l e a s e?
"rather frequently"
For the pre-hardmode mining speed, did playing on FTW make it 60 bps (the maximum speed) since it takes half hits to break the block?
No, that doesn’t affect swing speed. It halves the swings needed to break blocks - this means the Bone Pickaxe would take one hit to break stone instead of two, but the mining speed in strikes per second is unaffected.
Joke or not. No questions must remain unanswered. You're doing god's work.
612 views in 11 minutes he did not fall off
Honestly was wondering the mining thing, shame that Violent is useless.
Much better here than in shorts, f shorts.
Thanks for doing real videos instead of sharts.
4:47 you say 20(root2), but it realistically should be sqrt(800), the answer remains 28.3 blocks
20² + 20² = c²
c² = 800
c = sqrt(800)
your turning into terraria vsauce and i love it
You’re
here's a better question, what is the minimum possible mining speed?
how to have only 1 corruption biome worlds in medium worlds upon creation
i'm curious what the laser drill's range would be if you enabled journey mode's block placement range power
@Terraw does moving fast enough to clip through a block only work vertically? In mappygaming's first video showcasing innertube plus lance, he clips through the block his portal is placed on while only moving at 270mph
5 shorts would of gotten 50 times the views
how do you just come up with so many ideas, how do you learn such power
They faces killing me why we lowk gaf
Backflip tutorial when?
So the shadow staff does 300x more damage when at 1 block gap, or the s make it only hit once/some times?
Play on a ftw world (it increases mining speed)
how do i increase maxinum screen size in mobile terraria related to resolution (oh boy phone managing stuff, its near impossible to have an answer not being "you press zoom out button" but increase maxinum zoom.)
I have a question: how many colors are actually in the rainbow crystal staff summom attack
Why the character with no increased horizontal speed always sprints and there is no way to walk with a push of a button?
if the goblin tinkerer can walk at 200 ticks per mile, how many golden waterstriders can ome catch should the player be in the loading screen
Maybe someone, in another timeline or universe, asked....
The beach ball can bounce more
APRIL FOOLS
wait, but i have gotten stuck in walls and clipped through blocks, by using an inner tube in a flooded hellevator. why does this happen?
because terrasteel didnt check that
Thanks for making video instead of shorts! I hate shorts.
Mmm yes 1 view and 16 likes. It appears as though youtube has had one too many again.
1st questions is just quantum mechanics
i HATE shorts so i love this video
But is the terrarian better than the zenith and even the coin gun
Nop
im curious what set youre wearing, i want za glowing hand ples. :>
Hey how do u make ur characters hand glow blue, is it an accessory or an armor piece?
It's a shirt, Dark Artist's Robes from the Tavernkeep after Golem
@@cannedpotato2 thanks bro I'm using this on my character and it looks cool with yoreyezor's spell
It's possible to phase through blocks, and you need to be moving fast (Hermes Boots only), but also need a slope or one-block gap. You can fall through a 1-block wide gap if you run into a wall while holding S.
I still got ejected through blocks by mappy's railgun, can you explain how? I am pretty curious why did that work like that, thank you!
Edited : It has not much range, I am guessing that might be teleporter doing something?
In the same condition, I got blocked with 5000mph, but go through blocks with 6000+ mph🤔
Maybe vertical works differently than horizontal, hmm.
@@Terraw Hmm, mysterious🤔
I've moved fast enough I flew through blocks while playing fargo's mod. Therefore, git gud