Практика Shadowing: How I Learned Procedural Generation - Изучайте разговорный английский с YouTube

C1
So I finished learning how to make an FPS controller,
⏸ Пауза
108 предложений
Если предложения слишком короткие или длинные, нажмите Edit, чтобы их изменить.
1
So I finished learning how to make an FPS controller,
2
but if I want to make a more polished looking game,
3
I will need to work on my environment.
4
And since I'm more of a coder than an artist,
5
I think there's no better way than with procedural generation.
6
So let's begin by starting a new project.
7
Next it's time to go on my usual YouTube grind and figure out how to do mesh generation.
8
Thankfully Bracchus has three videos on this topic.
9
Three days later.
10
After watching Brackey's videos, I'm now able to generate meshes of any size that I need,
11
and all it took is the code you see on the left.
12
Now to make this look like terrain,
13
use something called Perlin Noise,
14
which is an algorithm created by Ken Perlin to help make more natural looking textures and terrain on the movie Tron.
15
What I'm using here is the 2D version which generates values between 0 and 1.
16
To represent this, I map the numbers closer to 0 as black and numbers closer to 1 as white.
17
The power of this algorithm comes when you multiply that Perlin value by a number.
18
For instance, I can use Perlin noise multiplied by an amplitude to procedurally generate the height of my terrain.
19
This is all fine and dandy,
20
but I wanted a little bit more control over my environment.
21
Thankfully I found this tutorial series by Sebastian Legg,
22
and it covered everything I wanted to know and more.
23
It seriously was so good that I gave it a watch a few times over.
24
The problem is, it goes into so much depth that it is too comprehensive for my puny brain to handle.
25
So I took two of the simpler concepts to add to my generator.
26
One was the ability to finely tune the noise,
27
and two was this concept of multiplying the the Perlin noise with the falloff map to create islands.
28
I actually wrote my own version of Sebastian's falloff map so that I could set where the falloff begins and ends.
29
Here's a preview of that code for those of you who are interested.
30
I also fixed Sebastian's noise generator because I think he broke it around episode 6 and then never fixed it.
31
When you change the scale you're supposed to be able to zoom in
32
and out of the Perlin map but right now it almost seems like you're generating a new map.
33
I narrowed down the problem to these lines here.
34
Changing this also fixed the parallax effect Sebastian had when changing the offset.
35
Now that we have more control over our environment,
36
it's time to move on to my favorite topic from elementary school,
37
and that is coloring.
38
So for coloring, I spent about a week or two trying to recreate the style Sebastian had for his intro.
39
He shows that he's generating a texture with these nicely rounded edges,
40
but in the tutorials, he only teaches us how to make a pixelated texture.
41
One solution I had was to increase the number of sample points we use in the texture,
42
but if you zoom in,
43
we still have the problem of seeing each individual pixel.
44
Then I remembered watching a video by Sebastian where he used marching cubes,
45
and I was almost certain this is the approach he used for generating his texture.
46
So I watched this video by the coding train and converted his marching squares algorithm from JavaScript into C-sharp.
47
I got pretty close to the results I wanted,
48
but when you view this on the terrain,
49
you could still see each individual pixel.
50
So I gave up on using a texture approach.
51
I really tried to avoid this as much as I could,
52
but I was left with no other choice but to dive into shaders.
53
After messing with shader graph for a few hours,
54
I came up with this decent shader here.
55
I surprisingly had a lot of fun making this and it turns out shaders aren't too hard after all.
56
With my new love for shaders,
57
I looked up a bunch of more tutorials on YouTube.
58
I found this tutorial for creating a gradient skybox with stars,
59
but I noticed there's a little bit of distortion near the edges.
60
So I found this article that taught me how to do proper UV sphere projection,
61
and yay, no more distortion.
62
But I wasn't quite satisfied yet.
63
I also found this awesome cloud shader that I needed to use as well.
64
And now our skies are looking not too bad.
65
Then to top it all off I used these two videos to make a stylized water.
66
Alright let's finish off this last bit here.
67
So to finish off this project let's add some vegetation.
68
I hopped in the blender and made this very beginner friendly tree
69
but I don't want to manually place hundreds of trees on the terrain because that would take forever.
70
And we are going for a complete procedural generation.
71
Thankfully, I remember watching this video from Jonas Tyroller a
72
while back where he talked about creating random levels for his game Islander.
73
Basically, if you shoot a raycast onto a random point on the island,
74
you can check if it's a valid spawn point for a tree.
75
If so, spawn the tree.
76
Then you can do this for as many times as you want trees,
77
or whatever object you want to randomly place.
78
So I created this simple prefab spawner script where I can select a prefab to spawn.
79
Then to determine if a spot is valid to place a prefab,
80
I just check if the the hit location is above the sea level.
81
I also have the script randomly change the scale
82
and rotation of the prefab we are spawning so that we have a bit of variation.
83
Lastly, let's add some grass.
84
I found this video to create a quick grass texture,
85
then I put together a bunch of planes in blender to display it.
86
Back in Unity, I just reused my prefab spawner script to spawn my grass around the island.
87
Although, to really bring this grass to life,
88
I watched this video from Bracuse.
89
And now, we have Sway in our grass.
90
So I brought over my FPS controller from the last video so that we can explore the island.
91
And after working on this for so long,
92
it's super cool to see this from the first person view.
93
With what we have here,
94
it's really starting to feel like a really polished game.
95
The sky, the water, with the FPS movements,
96
everything ties nicely together to really bring that GAME FEW.
97
To be honest, I could keep on going and continue to add things to my procedure generator,
98
but then this video will never end.
99
I definitely will be working on this tool in future videos
100
and I am just so pleased with how much I was able to figure out.
101
This is definitely going to help me out in any future game that I make,
102
and even just this island already feels like a cool spot to do 1v1 deathmatches on.
103
I can imagine doing some sick multiplayer battles on here,
104
finding good angles to pick off people on the island.
105
But anyways, if you stuck around this long,
106
thank you so much for watching,
107
and I hope to see you in the next one.
108
Peace.

Скачать приложение

ИИ-оценка каждого произнесённого вами предложения

Сканировать для скачивания
Сканировать для скачивания
TRENDING

Популярные

Контекст и предыстория

В этом видео автор делится своим опытом изучения процедурной генерации, что является важной темой для создания современных видеоигр. Он сосредоточен на желании улучшить визуальные элементы своей игры, используя алгоритмы, такие как Перлин шум. Разработка игры требует как технических, так и художественных навыков, и автор делится своими трудами и открытиями на пути к созданию более реалистичного игрового окружения.

5 основных фраз для повседневного общения

  • “Я закончил изучение того, как создавать контроллер FPS.” – Полезная фраза для описания завершения обучающего процесса.
  • “Я лучше кодер, чем художник.” – Самоосознание своих сильных сторон.
  • “Давайте начнем новый проект.” – Настрой на работу и новые начинания.
  • “Использую алгоритм для создания более естественных текстур.” – Описание применения технологий в практике.
  • “Я просмотрел видео несколько раз.” – Подчеркивает необходимость повторного обучения для лучшего понимания.

Пошаговое руководство по шадовингу

Чтобы эффективно использовать данное видео для практики разговорного английского, выполните следующие шаги:

  1. Слушайте и повторяйте: Начните с прослушивания видео, затем остановите и повторите каждую из ключевых фраз. Это поможет вам в освоении произношения и интонации.
  2. Записывайте себя: Используйте приложение для записи голоса, чтобы зафиксировать свои попытки говорить. Это позволит вам анализировать свои ошибки и отслеживать прогресс.
  3. Изучайте контекст: Обратите внимание на технические термины и фразы, связанные с игростроением и алгоритмами. Это не только улучшит ваш словарный запас, но и даст более глубокое понимание тематики.
  4. Обсуждайте с другими: Найдите единомышленников, которые также учат английский с YouTube. Обсуждение тем из видео поможет улучшить вашу уверенность и навыки общения.
  5. Практикуйте регулярно: Убедитесь, что в вашем расписании есть время для регулярной практики. Чем больше вы будете заниматься, тем лучше будут результаты в разговорном английском.

Используя метод shadowspeaks, вы сможете углубить свои знания и навыки общения, что сделает процесс учить английский с YouTube еще более эффективным!

Что такое техника Shadowing?

Shadowing — это научно обоснованная техника изучения языка, изначально разработанная для подготовки профессиональных переводчиков и популяризированная полиглотом доктором Александром Аргуэльесом. Метод прост, но эффективен: вы слушаете аудио на английском от носителей языка и немедленно повторяете вслух — как тень, следующая за говорящим с задержкой в 1–2 секунды. В отличие от пассивного прослушивания или грамматических упражнений, Shadowing заставляет мозг и мышцы рта одновременно обрабатывать и воспроизводить реальные речевые паттерны. Исследования показывают, что это значительно улучшает точность произношения, интонацию, ритм, связную речь, понимание на слух и беглость речи — что делает его одним из самых эффективных методов для подготовки к IELTS Speaking и реального общения на английском.

Угостите нас кофе