VOID
VOID
  • Видео 30
  • Просмотров 25 298
Lethal Company Funny Moments Vol.1
funny moments with the boys
#gaming #memes #lethalcompanygame #gameplay #games #lethalcompanygameplay
Просмотров: 61

Видео

Roblox DOORS: The Hunt | Full Walkthrough
Просмотров 4059 месяцев назад
Today we try the Roblox Doors : The Hunt, this is a tutorial video , how to beat the The Hunt ... ENJOY !!!! Try it for yourself : www.roblox.com/games/6516141723/DOORS #roblox #doors #gaming #doorsroblox #robloxgames
Poolrooms Experience | Extended Gameplay
Просмотров 108Год назад
Poolrooms game made with Unity Engine , Short Poolrooms game demo #backrooms #backroomsfoundfootage #unity #gamedevelopment #unity3d #unitygameengine
Poolrooms - WHAT WAS THAT !!?
Просмотров 84Год назад
Poolrooms - WHAT WAS THAT !!?
Backrooms | The Poolrooms Experience Part 2
Просмотров 59Год назад
Backrooms | The Poolrooms Experience Part 2
Backrooms | The Poolrooms Experience Part 1
Просмотров 93Год назад
Backrooms | The Poolrooms Experience Part 1
Backrooms | Short Poolrooms Game Demo
Просмотров 156Год назад
Backrooms | Short Poolrooms Game Demo
Unity | Dynamic Footsteps Showcase | Grass,Metal,Concrete
Просмотров 714Год назад
Unity | Dynamic Footsteps Showcase | Grass,Metal,Concrete
Dynamic Main Menu with Gameplay in Unity
Просмотров 109Год назад
Dynamic Main Menu with Gameplay in Unity

Комментарии

  • @Sir.DiesAlotol
    @Sir.DiesAlotol 2 месяца назад

    We making it out of the exclusion zone with this one.

  • @Ataavci
    @Ataavci 2 месяца назад

    whadyhek

  • @Mrbakirci1
    @Mrbakirci1 4 месяца назад

    Bu çocuklar bu işin duayeni

  • @WinGamer_YT
    @WinGamer_YT 5 месяцев назад

    Скинь ссылку на игру пж

    • @private_VOID
      @private_VOID 5 месяцев назад

      I made this game on Unity Engine , its a small project so there is no link

  • @varunkushwah451
    @varunkushwah451 6 месяцев назад

    How much fps u are getting

    • @private_VOID
      @private_VOID 6 месяцев назад

      I made this game on Unity Engine, Fps was limited to 60

  • @varunkushwah451
    @varunkushwah451 6 месяцев назад

    Hi bro

  • @nub_gamerr
    @nub_gamerr 9 месяцев назад

    Bhai mere ko iska link dona please mujhe bhi try krna he ye demo

    • @private_VOID
      @private_VOID 6 месяцев назад

      Brother I can put the game on itch io, I am still working on that game

  • @Cattdk
    @Cattdk 11 месяцев назад

    I love this song what is this song I’m downloading this song in Spotify

    • @private_VOID
      @private_VOID 11 месяцев назад

      open.spotify.com/track/1Pomzo56cjdsVjqOy96dy6?si=ReQ5qYiAQdym6krzaZw8GA

  • @Depression-s7y
    @Depression-s7y 11 месяцев назад

    the cut

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

    "There's no way" -famous last words...😢⚰

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

    Man:🗿🚬

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

    What’s the game?

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

      mikeklubnika.itch.io/buckshot-roulette

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

    ded

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

    Russian roulette with a fucking pump

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

    Me when a serious russian roulette-like game has a banger ost:

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

    Nice! If I were to make this myself I would probably store a list of step sounds, a list of materials, and a list of ints. Then when the player wants to make a stepping noise I would get the material from the ground below using a raycast, look up the index of that material in the list, use that index to find the corresponding number in the int list, then use that int list number as an index to a sound effects list. Defaulting to the first index if no match is found. This way I wouldn't have to manually tag/mark every object in the game, and adding new sound effects/changing existing ones/changing which materials plays which sound would be really easy as it would just be editing the 3 lists.

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

    nice! I personally like to basically use 3d volumetrics to tell the player which zone hes in

    • @1x5x7
      @1x5x7 Год назад

      I am tagging the grounds and have a headbob mechanic. When the headbob reaches the lowest position (aka taking a step), an Action is triggered. I have a method subscribed to that Action and on trigger, it shoots a RayCast for 1 frame below the player's position. If the tag matches, it plays the corresponding footstep.

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

      you are smart .. im new to coding and i use blueprints from unreal engine. how whould you suggest me to learn coding ? should i try to make a game and watch tutorials when i need them or should i follow a course to make a game or somthing else@@1x5x7

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

      @@1x5x7 I have a similer system, but I check the name of the Raycast material and play the coresponding sound. Also, how do you "understand" when the headbob reaches the lowest position?

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

      @@kikaru221 If I had to guess it either uses an animation or is generated using code. With animation you could just keyframe it to run a function when it reaches the low point, and with the code moving it up and down you would need to check the local position I assume. Although both are just things I thought of in the moment

    • @1x5x7
      @1x5x7 Год назад

      @@ocks_dev You are on the right track. The headbob works with a sine function defined in the code. It gives out a value to increase/decrease the localPosition of the camera (y-axis). The moment we are *near* a trough (about -5% to 0% added to the lowest trough value), we invoke the Action. I use a boolean to control the state to prevent multiple invokes at once; if the headbob reaches a vertical value of zero or higher, it resets the state. It's sloppy and might need some refactoring in the future, but it was fun to come up with that solution.

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

    Bruh that’s a game

  • @MohammadAli-nk1vn
    @MohammadAli-nk1vn Год назад

    That looks really good!