Out of Bounds SECRETS in BTD6!

Поделиться
HTML-код
  • Опубликовано: 29 авг 2024
  • Have you ever wondered what secrets lie beyond the exit of BTD6?
    Today we take a journey past what is expected in Bloons TD 6
    We will explore BTD6 maps like we have never seen before
    What secrets will we find hidden in these Bloons TD 6 maps?
    Thank you to Timotheeee for making this BTD6 Mod!
    #bloonstd6 #btd6 #mod
    RUclips: bit.ly/2noKtQe​
    Discord: / discord
    Instagram: / dablooon
    Twitter: / dablooon
  • ИгрыИгры

Комментарии • 70

  • @oceanbeans8546
    @oceanbeans8546 Год назад +186

    I love how confused he is about things that are so logical and obvious if you’ve ever made a 3D game. It has all that magic for him

    • @Delta_2209
      @Delta_2209 Год назад +30

      That's what's cool about seeing people who know nothing about your hobby see how you actually do things, it's like explaining magic

    • @oceanbeans8546
      @oceanbeans8546 Год назад +5

      @@Delta_2209 yeah exactly!

    • @User123-c2n
      @User123-c2n Год назад +3

      That was such a wholesome conversation

    • @AKdove
      @AKdove Год назад +3

      ​@@User123-c2n you very rarely see that now of a days

    • @josephdesimone6748
      @josephdesimone6748 Год назад

      You don’t have to have made a game to know what back face culling is idk how he’s so oblivious

  • @JuanPerez-vh6fc
    @JuanPerez-vh6fc Год назад +78

    You only see one side of the face because of normals.
    In 3D the faces have an orientation and you only render the face if it is looking towards the camera, if the face is looking the other way it doesnt render.
    And some objects missing some back faces is just for optimazation, less polygons = better performance, thats why some objects appear and others dont when looking under the map, they removed some faces to optimize the game.

    • @scrub8674
      @scrub8674 Год назад

      one side of the coin is visible the other side isn't, for optimization.

    • @givrally7634
      @givrally7634 Год назад +2

      The word "normal" just unlocked all that information for me. I always thought "Isn't it computationally expensive to try and find whether you're able to see part of an object or not ?" ever since I heard about that "hiding parts you don't see" method, but now that I think about it not at all. That face is a plane, you just have to compute a normal vector, and for any camera position you just have to draw a vector between the center of that object and the camera, then compute the dot product of those two vectors. Positive means you can see it, negative means you don't.

    • @WhatAboutDustbunny
      @WhatAboutDustbunny Год назад

      I rather suspect the ones that don't disappear when under the map are separate models that they use to just like, place around the map to add detail

  • @VOLATILEVOXELS
    @VOLATILEVOXELS Год назад +8

    Most of the stuff you’re confused by is standard video game creation techniques! Stuff that isn’t visible from beneath the map is a one sided texture, only visible one way, and the stuff that can be seen from below is a full 3D model, where every spot of it has a texture. The reason this is done is because the game has one camera angle. What’s the point of making some things visible from a different angle if you never change your viewing angle? Video game creation is a very interesting topic, especially for 3D games. I’m glad somebody did this video because other people that do OOB videos haven’t covered BTD6…
    1:45 standard technique, sometimes instead of making a model disappear, they just put it where nobody can see it.
    2:21 the pond stays visible because it’s actually a 3D model (you can see the individual parts of the model when it breaks)
    3:30 the dinosaur is a one-sided texture instead of a 3D model like I thought. Cool!
    4:27 once again, the papers are a 3D model, while the tables are just textures arranged to look like a 3D model
    5:05 it’s normal for devs to finish a model if it’s just barely outside of the camera’s view just in case the camera moves extra for some reason. The reason the trees are so high up is because they look like they’re in the right spot from the intended view, and it’s easier to just delete the trees instead of replace the trees with the stump textures when removing the obstacle.
    6:53 that’s the Easter egg of the critter in the pond, I think you have to click the bottom right corner of the pond several times.
    7:09 again, easier to move a 3D model rather than delete and replace it over and over
    9:25 fun fact, the TSG doesn’t disappear when flooding the valley!
    9:50 the reason one sided textures are so common is because there are no two sided textures, a two-sided texture is just two one-sided textures stuck together.
    11:25 the devs used the same exact model for the start, and copied it 2 times instead of making 2 separate models for the left path and the right path to save on memory.
    12:40 same thing as before! They re-use the same model 3 times instead of increasing the path length on the sides. (This one actually doesn’t make sense, it would save memory resources to add more path rather than re-use the massive path model 3 times…)
    Sorry for writing a college length essay, but that’s why I love video games and coding! So much work behind the scenes leads into a game, and, sometimes, just like a real job, you can get a bit sloppy with the parts nobody sees.

    • @VOLATILEVOXELS
      @VOLATILEVOXELS Год назад +3

      Keep in mind that I don’t know TOO much about 3D modeling, I just have some base level knowledge about games and how they save resources.

    • @godofgaming2350
      @godofgaming2350 Год назад +1

      I read all of this. My brain is not big enough to understand it thou

    • @pc12113
      @pc12113 Год назад

      I really enjoyed reading your college length essay! I do a lot of 2D design / paper mock-ups for 3D textures and it was really fascinating to read how they’re implemented into the game

  • @cerulity32k
    @cerulity32k Год назад +7

    2:08 Ninjakiwi made the game in Unity. In Unity, there is an Animator you can use. For a duration of time, when triggered, you can set the position, rotation, scale, etc. for the object you're animating. Once the animation reaches its end, the object will stay there. Hiding the cars actually might've been more work since they would have to detect when the animation ends and turn off the object.
    4:35 They hide the table bottom because it's _never_ visible. When you remove the papers and books off the table, they float down, possibly revealing them. The other pages are probably just duplicates of the same object, so that they don't need a separate model.
    9:35 Likely to lessen GPU load, triangles/polygons/faces are usually one sided. If you can see something on both sides, that usually means that there are two faces for each side. This means that if there's an absent face, you will be able to see through the one-sided face on the other side of the object.

  • @gobo6001
    @gobo6001 Год назад +19

    2:10 I think they stay loaded in so if you’ve already removed them and restart the game, they just move the cars back to their starting spot instead of needing to reload them

  • @Zoran-
    @Zoran- Год назад +15

    A bit of insight on why some parts are rendered while others aren't when viewed from weird angles.
    In games you generally want to render as little as possible to save on performance. This of course matters more in bigger games and less in Bloons where we are only talking about a couple of faces.
    In Unity (the game engine Bloons uses) planes (used for things like the ground) are already only rendered from the top, so those are never visible, while other objects that use different objects (like cubes, cones, etc) are just left as is since it saves little on performance to really spend time and get rid of the parts you don't see.
    The same can be said about a bunch of the other oddities like the castle on dark castle being big or the water on flooded valley. Just made bigger than needed or made with different intentions and never cut to size since it doesn't matter.
    As you can tell: Game development is full of imperfections, but as long as the player doesn't see or notice it is good to stay in.

  • @onemoreweirdo207
    @onemoreweirdo207 Год назад +21

    I love out of bounds videos and there is a significant lack of them for BTD 6! Thanks for making this one, I hope you make more in the future

  • @2cents968
    @2cents968 Год назад +8

    As a former level designer I think I can guess why clock tower has those extra bits on the sides - The track would be one model with the arc and straight bits at the end, and the level designer wanted the straight bits to go just a little further. Rather edit the model, they just add two extra copies of the model either side.

  • @givrally7634
    @givrally7634 Год назад +5

    I love the part at 4:05 where we can see the devs implemented some kind of nonlinear, probably exponential easing, for the moabs entering the track, but we don't even see it !

  • @Chunky_Pizza
    @Chunky_Pizza Год назад +4

    Bro said “I think there is gonna be train track map”. He definitely forgot about Underground, the train track map he thinks they’re going to add

  • @CoffeePot
    @CoffeePot Год назад +1

    As some others said, the direction of the normals (The triangles on each 3D model) are one direction. So the map floor is like a piece of paper, so it's pointing up to the player, but if you go underneath you can see through it.
    Where as the 3D models are 3D shapes, so they have faces all around the model pointing outwards.
    Also, they probably didn't need to code deleting the cards because it's not a big deal. The lights look like a transparent model with a gradient. I don't think it's actually lit at all. Since the lighting never changes and it's a vibrant game. It looks like it's a non-lit scene.

  • @rsinYT
    @rsinYT Год назад +1

    The extra track on inferno makes it look like a spider

  • @Damian-cilr2
    @Damian-cilr2 Год назад

    3:36 its basically just a flat texture,doesnt look flat because of the default camera angle but as soon as you move it,it breaks the illusion,it isnt any 3d model just a texture
    also the reason you see through on 1 side but not the other for some models,no need to render it,you aren't gonna see it,usually most models arent doublesided,sometimes they are but its very rare,mostly if say you can see inside the model for whatever reason like ths bolt of a gun for example,and if a model is doublesided it might cost a little bit of processing power hence why its usually not done on most models in most games

  • @NFITC1
    @NFITC1 Год назад

    Why do they render outside the viewing distance? Future-proofing. Not that it's going to happen, but in case they want to add an effect that shakes/tilts/skews the screen. Whether it be an ability or a boss effect, now there are areas outside the regular viewing area that are not null space. So far no such effects exist, but if they wanted to create one this buffer exists in all maps.

  • @waveplasma1369
    @waveplasma1369 Год назад +1

    The reason a lot of textures are placed in the air and disconnected is actually so they cover up moab-class bloons moving underneath them!

  • @soemie
    @soemie Год назад

    the floor in bloons td6 is a plane object, which only has one side. And of course that's the side facing the camera

  • @sfisher923
    @sfisher923 Год назад

    10:54 - I'm pretty sure there's a song out there about this concept called Flying Whales by Gojira

  • @TheChaser035
    @TheChaser035 Год назад +1

    Am I the only one who thinks that infernal looks like a spider upsidown and quiet street looks like a snowman upsidown? @dabloon

  • @macman3898
    @macman3898 Год назад

    Infernal is a spider, also you should do another one of these episodes

  • @gamingwithmr.z7259
    @gamingwithmr.z7259 Год назад

    so the reason things show up and some dont is because some of them are entities or it could be bc they are like walls roofs etc and not on the ground

  • @logan398
    @logan398 Год назад +1

    what if you do a ray of doom path on the gattling gunner and see where it ends on the map

  • @wert2du225
    @wert2du225 Год назад

    I think they are fleshed out more for like if you wanted to connect all the BTD maps, and infunum looked like a spider

  • @ArdoGamerhead
    @ArdoGamerhead Год назад

    Inferno is just a big spider. Change my mind.

  • @heckerhecker8246
    @heckerhecker8246 Год назад

    the path disappears so it's most likely a plane object or a one-sided 2d square

  • @cryingdiamonds7348
    @cryingdiamonds7348 Год назад

    "do they rock the ikea" that was so funny 🤣

  • @hehewoooo
    @hehewoooo 5 месяцев назад +1

    5:30

  • @Xander_X
    @Xander_X Год назад

    The reason you can't see certain things below the Track is better Textures are one-sided for better performance

  • @fdwdsd123
    @fdwdsd123 Год назад

    Really enjoy your content, keep up the good work!

  • @nokyno4790
    @nokyno4790 Год назад

    i think the houses in town center are in 3D with all their sides so they can use the same model and just rotate it

  • @lellol2371
    @lellol2371 Год назад

    can u make another video in watching the monkeys and maybe also the plane and heli from below i wonder if its fully detailed or not

  • @Guilherme.-61
    @Guilherme.-61 Год назад

    Now i want to see 3d Towers

  • @yusvfexp
    @yusvfexp Месяц назад +1

    Triple it to the next person

  • @snowslash4505
    @snowslash4505 Год назад

    Cool idea

  • @afung46
    @afung46 5 месяцев назад +1

    Go in the portal

  • @boppobot
    @boppobot Год назад

    dabloon everytime ur phone ringed it sounded like mine did too

    • @Dabloon
      @Dabloon  Год назад +1

      could you hear it in the video? lol

    • @boppobot
      @boppobot Год назад

      @@Dabloon very very faint but ya

  • @jamesknapp64
    @jamesknapp64 Год назад

    interesting video

  • @elizabethiino8341
    @elizabethiino8341 Год назад

    how do you flood flooded valley?

  • @Stop-Motion-Paper
    @Stop-Motion-Paper Год назад

    game dev here most stuff is for perspective but the cars why whould you delete them if you cant see them?

  • @nilpyc307
    @nilpyc307 Год назад

    it's two types of 3d one is a full on 3d model it's have a bottom half 3d does not

  • @eugenecamara3954
    @eugenecamara3954 Год назад +1

    Hi

  • @webbn5707
    @webbn5707 Год назад

    @hbomb I’m not familiar with developing but I am familiar with codeine

  • @nolanperry7731
    @nolanperry7731 Год назад +1

    Dabloon, every time I make a new
    challenge, ill do this again!
    Day 103 of asking dabloon to play my
    new challenge
    ZMSARSS
    If your a viewer, then check it out!
    (Btw im the guy that asked for dabloon/you to
    play my other challenge for 13 days until you did in
    the 20000 hp moabs vid)

  • @superuniform6548
    @superuniform6548 Год назад +1

    Day 45 of asking dabloon to play this challenge ZMDMOYH

  • @Albert3939-s7q
    @Albert3939-s7q Год назад

    Day 2 of asking him to play my challenge ZMEATHS

  • @Mk_n00b
    @Mk_n00b Год назад

    day 13: Can you beat ZMEWSWV

  • @Cooper-jt8nk
    @Cooper-jt8nk Год назад +1

    Last

  • @ChrisGamer_E1
    @ChrisGamer_E1 Год назад

    50th

  • @alexz3281
    @alexz3281 Год назад

    First

  • @Blueking20227
    @Blueking20227 Год назад

    Hello