TOP 10 NEW Systems and Tools OCTOBER 2024! | Unity Asset Store

Поделиться
HTML-код
  • Опубликовано: 27 ноя 2024

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

  • @CodeMonkeyUnity
    @CodeMonkeyUnity  Месяц назад +4

    🌍 Get the FREE Synty Asset cmonkey.co/unitypublishersale
    🔴 Unity 6 MEGABundle cmonkey.co/unitymegabundle
    🎮 Tools HumbleBundle 98% OFF! cmonkey.co/humblebundle2
    ✅ All in 1 Sprite Shader Asset Review ruclips.net/video/fSDEcsVK2UY/видео.html
    ✅ Character Customization Tutorial ruclips.net/video/Cyq6mpY-ILA/видео.html

  • @infamousprogrammer
    @infamousprogrammer Месяц назад +23

    The lattice modifier is actually awesome

  • @Doomness2k
    @Doomness2k Месяц назад

    Hey, I'm the developer of the Simple Picture Saves package. Thank you for mentioning my package! :D

  • @suicune2001
    @suicune2001 Месяц назад +4

    Thanks! That Lattice Modifier looks really impressive.

  • @xXYannuschXx
    @xXYannuschXx Месяц назад +6

    That lattice modifier asset looks REALLY good for the price. You could very easily re-create the crash cam from games like Motorstorm or Jak X with that. Or simply make your game alot more interactable.

  • @ihoraleinikov5412
    @ihoraleinikov5412 Месяц назад

    Omg. Thank you so much for keeping us informed about all of these discounts and sales. Amazing.

  • @Rochus_Turris
    @Rochus_Turris Месяц назад +3

    The light one looks pretty cool

  • @dtfe3
    @dtfe3 Месяц назад +6

    "If you want to make a new splinter cell because ubisoft does not want to"
    dude yes. Idk why they decided not to make a new one. Loved that series.

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

      The remake is supposedly still in active development, I'm hoping it ends up well! It's been ages since the last Splinter Cell

    • @dtfe3
      @dtfe3 Месяц назад

      ​@@CodeMonkeyUnity Fingers crossed yeah. I'd love to make a stealth game like that, but one of the main elements that drive those games are not only the strategy and level design, but also the animations. If the animations don't feel good when you sneak around, climbing around on the ceiling pipes or when taking out an enemy, you lose part of the coolness factor that really helps sell the right feeling to the player.
      I'm not keeping my hopes up too high though considering the situation ubisoft is currently in.

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

    We need unity 6 tutorials!

  • @tranhoangbaohuy3499
    @tranhoangbaohuy3499 Месяц назад

    Really helpful thank you❤

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

    That last one is just a fancy steganography tool, huh? Not gonna lie, I'm not opposed to it. Could be quite interesting if you take a screen capture of a location where you save during runtime, then use that as the image you stego with.

    • @Doomness2k
      @Doomness2k Месяц назад

      Hey, I'm the developer of the Simple Picture Saves package and *yes!* that is totally possible!
      The function signature looks like this:
      _public static void SavePicture(Texture2D texture, object data, string path)_
      This image can be both an existing image (through for instance _new Texture2D(1, 1).LoadImage()_ or _ImageConversion.LoadImage()_ ) or you can create one during runtime, with for instance a screenshot using _ScreenCapture.CaptureScreenshotAsTexture()_ or a _RenderTexture_ from a specific camera!
      The data can be any (serializable) data and the path is where the picture will be saved to. :)

  • @Veles017
    @Veles017 Месяц назад

    Dude, you're the best!

  • @cd2028
    @cd2028 Месяц назад

    Couple of these look good!

  • @Unzenexplorer
    @Unzenexplorer Месяц назад

    I'm also curious if 3D modelers can swap programs just as easy as swapping programming languages. Happy to grab up the synty construction pack for free, that's neat.

  • @saluramos2378
    @saluramos2378 6 дней назад

    i loved lattice modifier

  • @level1slime
    @level1slime Месяц назад +2

    took me a minute to realize I needed to type a discount code into the cart for the free asset but good lord is it a bundle I already got some ideas for it thanks again code monkey

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

      Yup don't forget the coupon! I hope you put that pack to good use, I'd love to have some time to play with it, looks like it has tons of stuff

  • @MarushiaDark316
    @MarushiaDark316 Месяц назад

    "If you want to make your own Splinter Cell since apparently Ubisoft doesn't want to ..."
    Oof! Shots fired.

  • @seifel-deensoliman5455
    @seifel-deensoliman5455 Месяц назад

    I'd like a tutorial video demonstrating how to replicate changing on SkinnedMeshRenderer's meshes and materials (for character customization) within a Unity Netcode project, specifically when using the hybrid animation approach.

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  Месяц назад

      You can see how I made it in my multiplayer course ruclips.net/video/7glCsF9fv3s/видео.html
      You basically just synchronize simple ints which you then use locally to select the correct material

  • @Amazingfacts19992
    @Amazingfacts19992 Месяц назад

    Hello love your videos, amazing content. Also i would like to know if there are a package for the Scriptable objects handler and all in 1 sprite shader. also does the all in 1 sprite shader works with 2d spine sprites?

    • @Amazingfacts19992
      @Amazingfacts19992 Месяц назад

      I know it says that it works but does it really works?

  • @MarushiaDark316
    @MarushiaDark316 Месяц назад

    Seeing an Inventory Engine on the list was like a punch in the gut because I just spent the last week of 12-hour days building my own. Trying to make gamepad work with UI has been the absolute bane of my existence. And that's even after using your virtual mouse tutorial. There's just something about those two systems that don't play well with each other and it's driven me up a wall in every project I've made for the last six months. Like I know what I want it to do and can explain it simply; but for some reason, the syntax and implementation is really REALLY bizarre and unintuitive.

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  Месяц назад

      That's interesting, what issues did you have? I would guess that if you make it work with drag drop on the mouse it should work just the same with a virtual cursor, although I haven't tried that. Sounds like an interesting challenge!

    • @MarushiaDark316
      @MarushiaDark316 Месяц назад

      ​@@CodeMonkeyUnity Several issues. I covered many of them in my stream today over on Serket Studios channel as well as first impressions of the asset (which has some really weird things about it like not using TMP, new Input System, or Scriptable Objects, as well as getting references by string and int ID and also capitalizing all the F's on floats).
      But to briefly answer your question, I wanted the gamepad to have the snappiness of auto-navigation but still show the inventory's current selection ghost at the mouse position and also have hover capabilities like with OnPointerEnter. Basically, these two systems are in conflict and I've been having to reinvent all that logic myself only to have other things break.
      Basically one step forward, two steps back is how it feels. Also, drag and drop with gamepad is not so great, so having to implement a click-and-swap method.

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

    Umodeler looks like it models only in tris and blender you can model in quads and ngons. Correct me if I'm wrong

    • @youcuos
      @youcuos Месяц назад

      With UModeler X in Unity, you can edit meshes consisting of quads, n-gons, and triangles, including both static and skinned meshes.

  • @MrOmega-cz9yo
    @MrOmega-cz9yo Месяц назад

    Hi CM! Just wondering what you think of the new FAB site.

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  Месяц назад

      Havent yet explored it but it seems like Quixel is free for all until 2025? Or maybe it's just for Unreal?
      Definitely interesting to have more competition for the asset store

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

    UModeler is changing to have some AI features. I think that's the major change from the previous one.

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

      And it also has modifiers like in Blender.

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

    anyone know how to download free synth asset?

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  Месяц назад

      You can go to the asset page and after you own it it will show a button "Open in Unity"
      Or open the Package Manager go to My Assets and find it

  • @ittology-games
    @ittology-games Месяц назад

    4:07 where can i find this package?

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  Месяц назад

      I believe it's this one assetstore.unity.com/packages/3d/environments/industrial/apocalyptic-hospital-264702?clickref=1011lzQpimif

  • @Mr_Nbdy007
    @Mr_Nbdy007 Месяц назад

    How to use the coupon?

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  Месяц назад

      Add to your cart and then during checkout there's a textbox to write a coupon

  • @safeerkhan2793
    @safeerkhan2793 Месяц назад

    Sir what unity I use in 2gb ram and 1.60 ghz

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  Месяц назад

      Whatever you want, try Unity 6 to see if it runs well

    • @safeerkhan2793
      @safeerkhan2793 Месяц назад

      @@CodeMonkeyUnity but I have 6 gb SSD in laptop

  • @28ansarnasar32
    @28ansarnasar32 Месяц назад

    For getting free is mandatory to add name phone number, address,city etc

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  Месяц назад

      Um sure you have to go through the checkout process

  • @edit4074
    @edit4074 Месяц назад

    Do u have a discord Server?

    • @CodeMonkeyUnity
      @CodeMonkeyUnity  Месяц назад

      There is a private one for channel members and course students ruclips.net/video/mXfkPlgyrbA/видео.html

    • @edit4074
      @edit4074 Месяц назад

      @@CodeMonkeyUnity ooooh i wish i can buy it

  • @HopperGameDevelopment-x4r
    @HopperGameDevelopment-x4r Месяц назад

    Not bad.

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

      I see u and I are in the YT unity hole atm since I just saw you on another video LOL

    • @HopperGameDevelopment-x4r
      @HopperGameDevelopment-x4r Месяц назад +2

      @@MikeCore Ah MikeCore, I recognise you. Lol, I clearly need to take a break from commenting on videos.

    • @MikeCore
      @MikeCore Месяц назад

      @@HopperGameDevelopment-x4r felt, haha

  • @Hy-zs4zv
    @Hy-zs4zv Месяц назад

    Why the synty asset is not free on my account?

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

      Make sure you add the coupon at discount, it will then become free

  • @오창현-e5w
    @오창현-e5w Месяц назад +1

    This bundles contains useless things a lot bro

    • @ekzac
      @ekzac Месяц назад

      Do you say the Humble Bundle? Many assets are way too specific, but some of them meet my exact needs, and it would be very cheaper than purchasing other assets.

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

      With such a deep discount you only need one of the assets to be useful to you to make the whole thing worth it.
      If nothing at all is worth it for your particular use cases then yeah don't pick it up