Тёмный

Make Your Own Vampire Survivors-Like in Unity (No DOTS) 

Ziberian
Подписаться 1 тыс.
Просмотров 10 тыс.
50% 1

• Thanks for watching!
• Discord: / discord
• Metallophobia: store.steampowered.com/app/18...
Music Used in this Video:
• KOLA - Better Alone
• KOLA - Break
#unity #unity3d

Наука

Опубликовано:

 

14 янв 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 35   
@ZiberianDev
@ZiberianDev 4 месяца назад
I hope you found this video useful. If you would like to watch some of my more creative projects, check out the bacterial simulation I made in Unity: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-ws19Wrv37-A.html
@IdealIdleIncremental
@IdealIdleIncremental 4 месяца назад
It's strange that your channel has so few subscribers. The depth and quality of the content are outstanding. Subscribed! Looking forward to more videos like this.
@jaaferelsadig
@jaaferelsadig 4 месяца назад
Great video, I love learning the logic behind solving these kinds of problems, thank you!
@rashidfarhan6223
@rashidfarhan6223 Месяц назад
i tested it and it works! spoken like a true game developer sir!
@SpaceGoatboy
@SpaceGoatboy Месяц назад
Thank you! great video!
@XenocraftGalaxy
@XenocraftGalaxy 4 месяца назад
What is this place? I don't know. Do I understand the things appearing on my screen? No. Why am I here? The almighty algorithm has sent me. And what a wonderful place I have been sent. And now I shall attempt to appease the almighty algorithm, so that others too may experience this joy.
@rukinohi
@rukinohi 26 дней назад
Very nice tutorial, however, did you figure out how to move the enemies smoothly? Currently they jitter a lot, as they only move every Xth of a second.
@OskGame
@OskGame Месяц назад
OMG, I want to make a Survivor game and performance is a huge limitation without using DOTS, watching your video I'm impressed if you can share the source code, I really appreciate your work. your current job!
@shinkouhai919
@shinkouhai919 Месяц назад
this a good tutorial, I usually just slam a box trigger collider to make in the list of the enemy. if enemy got in, add to the list, if enemy out, delete from the list. lol
@shonsomech7839
@shonsomech7839 3 месяца назад
first of all ty for this amazing video and can i get this project that you made here to see how all this combine into one? i got kinda lost while trying to make it work for me
@zivv1847
@zivv1847 Месяц назад
很棒的视频,视频的前半部分我跟你的思路是一样的,但是我没有去验证这个方法可不可行,因为我下周就要交付工作了,谢谢你帮我验证了这个方法是可行的并且很感谢提供了视频后半部分的思路
@domenos8967
@domenos8967 4 дня назад
Thanks! But how much cost List.Remove operation? Will Unity move rest elements (tail) by one to beginning of the list?
@de0o0
@de0o0 4 месяца назад
I assume that the code choose the enemy randomly from spatialgroup right? So if we for example have 2 enemies in spatial group that will meet distance requirement it just choose first one in the list right?
@kplays_6000
@kplays_6000 4 месяца назад
Would it be better in your sorted set to rather than sort every single batch, keep track of which scores change and move them in the set accordingly? That way you don't have to sort the entire list and can just move around the ones that need moving
@ComfortZoneGames
@ComfortZoneGames 3 месяца назад
Smart approach. Thanks for the video, but may I ask this: Aren't you just "exchanging" low FPS for high FPS but with enemies moving at even lower FPS? Or didn't I get it right?
@ZiberianDev
@ZiberianDev 3 месяца назад
With some of the optimizations thats true, but there are still other ones (like the spatial one) that still optimizes without sacrificing FPS.
@ThanhNguyen-po7zy
@ThanhNguyen-po7zy 3 месяца назад
I wonder if the physic layer in Unity will help in this case. By saying no collision between enemy, using collision trigger tom reduce the work. Does this help? never try with a lot of object like this game. But thanks for the tutorial, somehow I think this is better solution.
@revimfadli4666
@revimfadli4666 5 месяцев назад
I thought unity already implemented this haha Did you also use dots?
@ZiberianDev
@ZiberianDev 5 месяцев назад
Initially I had "No DOTS" in the title but I thought people that didn't know what that is would be confused. But yeah, this solution has no DOTS, just plain Unity :)
@revimfadli4666
@revimfadli4666 5 месяцев назад
​@@ZiberianDevok that's a rather huge speed-up, let alone with jobs and dots.... I wonder if you can upscale the bacteria simulation with that...
@lining-wp9so
@lining-wp9so 19 дней назад
I am developing RTS game 400 units vs 400 units, can you suggest me an optimal approach?
@RaidenHeaven
@RaidenHeaven 5 месяцев назад
So after you get a the list of the enemies in the Partition (or neighbor Partitions) you check the projectile distance from the enemies? What about the enemy who is big enough to get inside in the other Partitions? Does an enemy exists in multiple partitions because of the size?
@ZiberianDev
@ZiberianDev 5 месяцев назад
That is a good point that I didn't talk about. Basically every bullet and enemy has a radius so if a bullet is 0.2 wide, enemy is 0.5 wide, that means if their distance (center to center) is 0.7 or less, they are touching. In terms of even "considering" the enemies, that is indeed a limitation in my current setup. If there is a really large enemy where its arm is on a partition that might not be considered by the bullet. But here are two solutions: 1. Keep track of largest enemy on the map currently in the GameController so every bullet considers that added range when checking partitions. 2. I think an even better solution is: If you have a lot of big enemies, or large variety in size, you should increase your partition size. If most of your enemies say span a 3x3 box, you should increase your partition size to be a 3x3 box, instead of using 9x 1x1 boxes in a square arrangement. I hope that makes sense.
@RaidenHeaven
@RaidenHeaven 5 месяцев назад
@@ZiberianDev Thanks for replying!!!
@ZiberianDev
@ZiberianDev 5 месяцев назад
Yeah the GameController is a singleton that manages which enemies get updated (I show that part in the video). It picks based on the batches. So basically there are 50 frames a second, and every frame 1/50th of the enemies update. For your 3rd option, yes, definitely different solutions could also work. Very flexible depending on the game & your needs.
@kplays_6000
@kplays_6000 4 месяца назад
@@ZiberianDev The one thing that throws me off about spatial partitioning is that even if your partition sizes are big enough to fit your largest enemy, that one large enemy is still going to move *gradually* between partitions. You'll always have a situation where an enemy can be between and in two partitions
@XenocraftGalaxy
@XenocraftGalaxy 4 месяца назад
@@kplays_6000 Ziberian covered that in the video. That you can account for this by checking nearby partitions, like a 3x3 grid around the monster, or if it is an incredibly large enemy, you can hard code it. In a more dynamic or variable equation (2+s) * (2+s). Where s is the size of the enemy. So, if a normal enemy is 1x1, it will check a 3x3 area. 3x3 enemy? 5x5. etc and so on.
@Zicrus
@Zicrus 4 месяца назад
You could also just do everything on the GPU, which would probably be enough by itself
@boynet2
@boynet2 3 месяца назад
thanks, is there a reason not to use dots?
@dreamcatforgotten8435
@dreamcatforgotten8435 2 месяца назад
I think Jobs and Burst are reasonable to use for such a game. ECS would be better, but then the code-maintenance and expansion, as well as integration of Managed Assets/etc, will be more difficult.
@sobalsoft
@sobalsoft 4 месяца назад
So uh... where is this actual solution? :D
@ZiberianDev
@ZiberianDev 4 месяца назад
Its at 00:00 - 06:28
@sobalsoft
@sobalsoft 4 месяца назад
@@ZiberianDev oh gotcha, thought there was source code somewhere
@NadjibBait
@NadjibBait 2 месяца назад
@@ZiberianDev Hmm can't find the solution, my RU-vid says the video is 6:27 length, so I presume it's in the last second I don't have access to???
Далее
Dear Game Developers, Stop Messing This Up!
22:19
Просмотров 682 тыс.
The idea of ​​making a badge is so cute ❤️
00:44
Unity ECS For Beginners (DOTS)
18:52
Просмотров 14 тыс.
How to make a good platforming character (Developing 6)
14:50
The Internet Played My Game (and it did not go well)
9:27
AK-xolotl: How NOT to Make a Roguelite
7:12
Просмотров 795 тыс.
We made Vampire Survivors BUT in 10 Lines of Code
7:08
8 DEVS Make a GAME without COMMUNICATING!
13:21
Просмотров 968 тыс.
How to Fail at Making a RogueLike
3:37
Просмотров 229 тыс.
APPLE совершила РЕВОЛЮЦИЮ!
0:39
Просмотров 1,1 млн
TOP-18 ФИШЕК iOS 18
17:09
Просмотров 728 тыс.