background top icon
background center wave icon
background filled rhombus icon
background two lines icon
background stroke rhombus icon

Download "Уроки Scratch / Какие есть циклы в Scratch"

input logo icon
Video tags
|

Video tags

циклы
циклы scratch
циклы скретч
бесконечный цикл
цикл с условием
цикл пока
делаем игру
делаем игру scratch
scratch
программирование
видеоурок
уроки
скретч
скрэтч
skratch
уроки по scratch
курсы для детей
скретч игра
scratch уроки с нуля
скретч уроки
scratch 3
scratch игра
скретч игры
scratch уроки игры
уроки scratch
для начинающих
scratch с нуля
скретч делаем игру
уроки по scratch 3
скретч игры сложные
игра на скретч
игра на scratch
скретч 3
игрыscratch
урокиscratch
игра
делаемигру
Subtitles
|

Subtitles

subtitles menu arrow
  • ruRussian
Download
00:00:02
programming Weiss boards yours not us
00:00:04
lesson start speech in this lesson I will show you how to
00:00:06
make scratch cycles and so if you
00:00:09
like such lessons be sure to
00:00:10
subscribe to our channel and like you
00:00:12
know, let's start switching to the
00:00:14
desktop
00:00:15
switching and so here I already have
00:00:17
scratch running, I’ll immediately remind you that
00:00:20
the screen in scratch is divided into three areas,
00:00:22
the left area is the area in which
00:00:25
all your commands are located, which you
00:00:27
throw in the middle area
00:00:29
here for this hero, highlighted in a
00:00:31
light color,
00:00:32
who will carry them out. in
00:00:35
this right window here the
00:00:38
hero himself can be selected here in the
00:00:40
lower right part and so let's look at
00:00:42
what cycles you can do scratch what
00:00:46
is a cycle a cycle
00:00:47
is a sequence of actions
00:00:50
that is performed many times and is
00:00:53
performed as many times as long as it is correct and
00:00:55
the conditions are good, look at us
00:00:58
there is a hero, let's
00:01:00
make our cycle for this hero, but of course, let's
00:01:03
activate our program by clicking on the
00:01:05
checkbox, we take events with you when the checkbox is clicked,
00:01:09
so the first cycle that we will
00:01:12
consider is an endless loop that
00:01:15
is repeated, we always take control and
00:01:18
select repeat always,
00:01:20
this cycle will repeat always until
00:01:24
you create the conditions for him to exit
00:01:27
this cycle,
00:01:29
see what example can be
00:01:32
given here, for example, we always take from
00:01:34
the movement to walk 10 steps and
00:01:37
take if he touches the edge, then push off,
00:01:40
our hero will move across the screen, and
00:01:43
let’s also change his appearance, we will
00:01:46
immediately change his costume then there he will
00:01:48
walk and move his feet, click on
00:01:51
the direction and click here left to right
00:01:53
now look, when we start our
00:01:56
program, this cycle will start,
00:01:58
always repeating an endless loop and our
00:02:00
hero will start walking around the screen left to
00:02:02
right like this, of course, you can
00:02:06
choose a maritim background of some kind
00:02:08
let's choose a beautiful background, for example,
00:02:11
this one
00:02:12
and our hero is running endlessly here
00:02:14
now here and we want to get out of this
00:02:16
loop, we need to add
00:02:18
interruptions for this loop, what could
00:02:21
be the harm of an interruption if we touch
00:02:23
our hero's mouse, then let's
00:02:26
stop our Harry there like this
00:02:28
do we take from the control if then and
00:02:31
throw it inside our infinite loop
00:02:33
then we take from the sensors if it touches the
00:02:37
mouse pointer
00:02:39
if the tower touches our hero then we
00:02:42
must take from the control
00:02:44
for example
00:02:45
stop everything, that is, the whole
00:02:48
program stops they only this algorithm can be
00:02:52
done so that only this the script
00:02:54
stopped, that is, we will be
00:02:56
interrupted by this endless loop,
00:02:59
you can put other sprite scripts
00:03:02
besides this one, so let's stop
00:03:04
just this script, run it, look,
00:03:08
our hero is running around the screen and it stinks that
00:03:10
this endless loop,
00:03:12
if we hover the mouse over it, then we
00:03:15
will stop here this algorithm
00:03:18
will trigger the exit from this block of code,
00:03:21
okay, we have now looked at an
00:03:24
infinite loop, now let's
00:03:26
look at another loop,
00:03:28
loop repeat until the loop exits the
00:03:32
while condition,
00:03:34
usually programming o is called
00:03:36
while not yet, so we take from the events
00:03:40
carnage TV burn and from the control we take
00:03:43
our new loop
00:03:44
to repeat until the while loop, that is, our
00:03:47
hero will repeat all actions until
00:03:50
some event occurs,
00:03:52
let's give this code from or the flag
00:03:55
so that it does not work and what we will
00:03:57
do, of course, duplicate this block
00:04:00
and throw
00:04:01
if we remove it here, basically our cycle will
00:04:04
always repeat until
00:04:07
some event occurs drop by drop
00:04:09
does not touch the mouse pointer, that is,
00:04:12
look, we got an analogue of this
00:04:15
same code, that is, our hero will
00:04:17
always walk because you are a suit and
00:04:20
push off from the edge of the screen until it
00:04:22
touches the mouse pointer,
00:04:24
what is the difference between this algorithm with a
00:04:27
repeat until loop and this
00:04:30
algorithm, the difference is that repeat
00:04:32
always does not have the ability to
00:04:35
execute any other commands after it,
00:04:37
look below, we cannot
00:04:40
attach anything because from this algorithm you
00:04:43
can only exit in this way,
00:04:45
stop there is this script, but in this
00:04:48
loop, after stopping this loop, we can
00:04:50
execute the following command,
00:04:53
for example, from the appearance, take
00:04:55
say 2 seconds, that is, hello for two
00:04:58
seconds in this case, we press start,
00:05:01
our hero will start running until then until
00:05:03
we touch it with the mouse, look, and
00:05:06
when we touch it, it will say hello for two
00:05:08
seconds, that is, the main difference between these
00:05:11
two loops is that in this loop you
00:05:14
cannot exit it and continue
00:05:16
executing commands in the same algorithm, you
00:05:18
can only exit it by stopping the
00:05:20
whole algorithm about this loop you will
00:05:24
execute all these commands endlessly
00:05:26
until some
00:05:28
event occurs, for example this event, then of
00:05:31
course after the occurrence of this event the
00:05:34
execution of our code continues
00:05:37
here, if we duplicate this code
00:05:39
again, look at yours below
00:05:40
then you and I can touch our
00:05:43
hero twice, look, we launch, we
00:05:46
touched him, hello and runs again, but
00:05:51
this part 2 is already running, which we
00:05:53
duplicated to everyone once again,
00:05:55
coal hello and our entire code
00:05:57
stops, that is, the main difference is
00:05:59
that it does not allow repeating yet
00:06:02
you need to complete this loop according to the condition and
00:06:04
continue executing the next commands, and
00:06:06
in this loop always repeat, you
00:06:09
can’t do this perfectly well, look, we
00:06:13
looked at two loops:
00:06:14
repeat always and repeat until
00:06:17
some condition occurs, the
00:06:19
difference is that always repeat
00:06:21
further does not have the ability to continue
00:06:23
our algorithm code and repeat until it does not
00:06:25
have the ability to continue our
00:06:28
algorithm code when this loop is completed.
00:06:30
Now let's look at another loop,
00:06:32
it is called to repeat a certain number
00:06:35
of us, for example, repeat 10 times, what does this
00:06:38
mean, this means that our loop with
00:06:40
you will be repeated exactly a certain
00:06:43
number of times, for example 10 times, how it
00:06:46
will look,
00:06:47
see also when the checkbox is pressed,
00:06:49
repeat for example 10 times and execute
00:06:52
all these commands, that is, exactly ten times
00:06:55
our hero will execute these commands,
00:06:58
then our algorithm can continue
00:07:00
further, for example, we can also
00:07:02
duplicate this command and now when
00:07:05
he executes exactly ten times these
00:07:08
commands he will then say hello for two seconds
00:07:11
let's allow caretaker gal hello
00:07:15
after exactly ten
00:07:16
execution of these commands such cycles
00:07:19
exist with you scratch repeat always
00:07:21
repeat until not and repeat a certain
00:07:24
number of times one more thing looks like a
00:07:28
cycle
00:07:29
this is wait until this is not really a loop,
00:07:32
this is just an event waiting for some
00:07:34
event, for example, waiting until the mouse is touched,
00:07:38
what does it look like, look,
00:07:41
in fact, maybe this is an empty loop that
00:07:44
waits for an event, let's evaluate this is
00:07:46
the algorithm, this is how it works,
00:07:49
look, we will wait until the mouse is touched
00:07:54
just like that, they touch the mouse pointer and
00:07:57
then say hello for two seconds,
00:08:00
press start, point the mouse and our hero
00:08:04
says hello, that is, we get such a
00:08:06
simple cycle that is in
00:08:10
standby mode until this event, that
00:08:12
is, at 10 we simply took advantage of
00:08:15
what we are waiting for this event and then it is
00:08:18
our next code on the screen, we
00:08:21
get a wait cycle until some
00:08:24
event and then we continue to execute
00:08:27
our commands below in reality we say
00:08:29
hello for two seconds, that is, such
00:08:31
cycles
00:08:32
exist scratch thank you for your attention
00:08:35
subscribe our channel like
00:08:37
comment ask questions everyone
00:08:39
good luck in 5th grade started
00:08:41
thank you

Description:

Привет друзья! Сегодня мы с вами изучим какие есть циклы в Scratch! На этом уроке, мы: ✔ Научимся использовать бесконечный цикл. ✔ Научимся использовать цикл с условием. ✔ Научимся делать цикл на выполнение N раз и цикл с ожиданием до события. Где нас можно найти ► ✔ Вступай в группу ВК - https://vk.com/wiseplat ✔ Дополнительные уроки с домашними заданиями можно найти на сайте WISEPLAT: https://wiseplat.org/ ✅ Теперь вы можете делать свои полноценные игры, с врагами, сердечками/жизнями и классным оформлением! Уроки по Scratch помогут в этом! - Уроки от #OlegShpagin 👨🏼💻 #урокискретч #scratchдляначинающих #scratchурокиигры Ставь лайк, если тебе понравилось видео 👍 ►► Подписывайся на канал! ✅ Начинаете программировать? – Повторяйте все то, что показываем в обучающем видео. Тогда вы будете закреплять материал и быстрее сможете начать программировать на Scratch. 👍 Смотрите наши обучающие видеоуроки и выучите Scratch быстрее всех! :)

Preparing download options

popular icon
Popular
hd icon
HD video
audio icon
Only sound
total icon
All
* — If the video is playing in a new tab, go to it, then right-click on the video and select "Save video as..."
** — Link intended for online playback in specialized players

Questions about downloading video

mobile menu iconHow can I download "Уроки Scratch / Какие есть циклы в Scratch" video?mobile menu icon

  • http://unidownloader.com/ website is the best way to download a video or a separate audio track if you want to do without installing programs and extensions.

  • The UDL Helper extension is a convenient button that is seamlessly integrated into YouTube, Instagram and OK.ru sites for fast content download.

  • UDL Client program (for Windows) is the most powerful solution that supports more than 900 websites, social networks and video hosting sites, as well as any video quality that is available in the source.

  • UDL Lite is a really convenient way to access a website from your mobile device. With its help, you can easily download videos directly to your smartphone.

mobile menu iconWhich format of "Уроки Scratch / Какие есть циклы в Scratch" video should I choose?mobile menu icon

  • The best quality formats are FullHD (1080p), 2K (1440p), 4K (2160p) and 8K (4320p). The higher the resolution of your screen, the higher the video quality should be. However, there are other factors to consider: download speed, amount of free space, and device performance during playback.

mobile menu iconWhy does my computer freeze when loading a "Уроки Scratch / Какие есть циклы в Scratch" video?mobile menu icon

  • The browser/computer should not freeze completely! If this happens, please report it with a link to the video. Sometimes videos cannot be downloaded directly in a suitable format, so we have added the ability to convert the file to the desired format. In some cases, this process may actively use computer resources.

mobile menu iconHow can I download "Уроки Scratch / Какие есть циклы в Scratch" video to my phone?mobile menu icon

  • You can download a video to your smartphone using the website or the PWA application UDL Lite. It is also possible to send a download link via QR code using the UDL Helper extension.

mobile menu iconHow can I download an audio track (music) to MP3 "Уроки Scratch / Какие есть циклы в Scratch"?mobile menu icon

  • The most convenient way is to use the UDL Client program, which supports converting video to MP3 format. In some cases, MP3 can also be downloaded through the UDL Helper extension.

mobile menu iconHow can I save a frame from a video "Уроки Scratch / Какие есть циклы в Scratch"?mobile menu icon

  • This feature is available in the UDL Helper extension. Make sure that "Show the video snapshot button" is checked in the settings. A camera icon should appear in the lower right corner of the player to the left of the "Settings" icon. When you click on it, the current frame from the video will be saved to your computer in JPEG format.

mobile menu iconWhat's the price of all this stuff?mobile menu icon

  • It costs nothing. Our services are absolutely free for all users. There are no PRO subscriptions, no restrictions on the number or maximum length of downloaded videos.