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

  Рет қаралды 12,279

Ziberian

Ziberian

6 ай бұрын

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

Пікірлер: 36
@ZiberianDev
@ZiberianDev 5 ай бұрын
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: kzfaq.info/get/bejne/rdlhbLqj25mbXXU.html
@jaaferelsadig
@jaaferelsadig 5 ай бұрын
Great video, I love learning the logic behind solving these kinds of problems, thank you!
@IdealIdleIncremental
@IdealIdleIncremental 5 ай бұрын
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.
@SpaceGoatboy
@SpaceGoatboy 2 ай бұрын
Thank you! great video!
@rashidfarhan6223
@rashidfarhan6223 2 ай бұрын
i tested it and it works! spoken like a true game developer sir!
@shinkouhai919
@shinkouhai919 2 ай бұрын
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 4 ай бұрын
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 3 ай бұрын
很棒的视频,视频的前半部分我跟你的思路是一样的,但是我没有去验证这个方法可不可行,因为我下周就要交付工作了,谢谢你帮我验证了这个方法是可行的并且很感谢提供了视频后半部分的思路
@rukinohi
@rukinohi 2 ай бұрын
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 3 ай бұрын
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!
@XenocraftGalaxy
@XenocraftGalaxy 6 ай бұрын
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.
@kplays_6000
@kplays_6000 6 ай бұрын
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
@de0o0
@de0o0 5 ай бұрын
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?
@ThanhNguyen-po7zy
@ThanhNguyen-po7zy 4 ай бұрын
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.
@ComfortZoneGames
@ComfortZoneGames 5 ай бұрын
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 5 ай бұрын
With some of the optimizations thats true, but there are still other ones (like the spatial one) that still optimizes without sacrificing FPS.
@domenos8967
@domenos8967 Ай бұрын
Thanks! But how much cost List.Remove operation? Will Unity move rest elements (tail) by one to beginning of the list?
@revimfadli4666
@revimfadli4666 6 ай бұрын
I thought unity already implemented this haha Did you also use dots?
@ZiberianDev
@ZiberianDev 6 ай бұрын
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 6 ай бұрын
​@@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...
@RaidenHeaven
@RaidenHeaven 6 ай бұрын
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 6 ай бұрын
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 6 ай бұрын
@@ZiberianDev Thanks for replying!!!
@ZiberianDev
@ZiberianDev 6 ай бұрын
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 6 ай бұрын
@@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 6 ай бұрын
@@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 6 ай бұрын
You could also just do everything on the GPU, which would probably be enough by itself
@lining-wp9so
@lining-wp9so Ай бұрын
I am developing RTS game 400 units vs 400 units, can you suggest me an optimal approach?
@boynet2
@boynet2 4 ай бұрын
thanks, is there a reason not to use dots?
@dreamcatforgotten8435
@dreamcatforgotten8435 3 ай бұрын
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.
@onigumo
@onigumo Ай бұрын
but what about on mobile
@sobalsoft
@sobalsoft 6 ай бұрын
So uh... where is this actual solution? :D
@ZiberianDev
@ZiberianDev 6 ай бұрын
Its at 00:00 - 06:28
@sobalsoft
@sobalsoft 6 ай бұрын
@@ZiberianDev oh gotcha, thought there was source code somewhere
@NadjibBait
@NadjibBait 3 ай бұрын
@@ZiberianDev Hmm can't find the solution, my KZfaq says the video is 6:27 length, so I presume it's in the last second I don't have access to???
The Internet Played My Game (and it did not go well)
9:27
advancenine
Рет қаралды 214 М.
I coded your DUMBEST Minecraft ideas
15:03
Element X
Рет қаралды 456 М.
50 YouTubers Fight For $1,000,000
41:27
MrBeast
Рет қаралды 195 МЛН
마시멜로우로 체감되는 요즘 물가
00:20
진영민yeongmin
Рет қаралды 33 МЛН
Iron Chin ✅ Isaih made this look too easy
00:13
Power Slap
Рет қаралды 35 МЛН
I made Vampire Survivors… with cars
13:26
Luke Muscat
Рет қаралды 93 М.
Making an Arcade Roguelike in 48 Hours | Sparkchild Devlog
12:34
20 Advanced Coding Tips For Big Unity Projects
22:23
Tesseract
Рет қаралды 168 М.
A new way to generate worlds (stitched WFC)
10:51
Watt Designs
Рет қаралды 518 М.
AK-xolotl: How NOT to Make a Roguelite
7:12
sl1ppey
Рет қаралды 842 М.
I worked on my Game for 30 Days | Devlog
18:06
Sundercore Dev
Рет қаралды 61 М.
The HARDEST part of game development | Devlog
6:16
Challacade
Рет қаралды 38 М.
НЕ БЕРУ APPLE VISION PRO!
0:37
ТЕСЛЕР
Рет қаралды 292 М.
Опасность фирменной зарядки Apple
0:57
SuperCrastan
Рет қаралды 6 МЛН
Копия iPhone с WildBerries
1:00
Wylsacom
Рет қаралды 7 МЛН