It's Severance, but in React Native

preview_player
Показать описание


Chapters:
0:00 Intro
2:39 Perlin Noise
17:00 CRT Effect
28:07 Credits
Рекомендации по теме
Комментарии
Автор

the intro is underrated this deserves more views

sherlockluk
Автор

This was amazing, thank you! Expected something much more complicated for the scanlines

pyroboomka
Автор

This was really fun, thanks! Incredible video

marcelo-cpq
Автор

Random distribution: since you are using Math.round() from 0 to 3, that means it's not evenly distributed and you'll have 0.5 / 3 chances of the index 0, 1 / 3 chances of index 1, 1/3 chances of index 2, and then again 0.5 chances of index 3 (meaning cyan and green will appear half as often as pink and yellow).

An easy fix is using instead Math.floor from 0 to 4 instead: Math.floor(Math.random() * colors.length)); note that in Math.random() the 1 is not included, so this is effectively from 0 to 3.9999... so when flooring the random number it'll be 0, 1, 2, or 3, with each index having a 1/4th chance of happening

franciscopresencia
Автор

Thank You for all of your videos that you did.

kevinhawthorne
Автор

Yo this so amazing! miss the old hoodie 😃

DrNabeel
Автор

confetti with skia, can it be done in rn? 🤓

alexanderrojas
Автор

Hey William can u please make a video on adding video calling features using expo..it's possible in react native cli but not getting in expo....by the way always appreciate your work 👏👏

bideshbanerjee
Автор

Hi William 🙌 is thair any work going on to bringing Skia to expo

sourabhsoni
Автор

source code and vid are completely different : undefined is not a constructor (evaluating 'new error someone please help

alexokin
Автор

How to get this ios simulator integrated inside vs code? also how come the simulator looks different from what apple provides?

geekthegeek
Автор

Is it possible to create audiowave form and trimmer UI using skia ?

Can someone guide me I'm new to skia and rn

gowthamgobalakrishnan
Автор

When will be symlink issue was resolved for windows

vikillakkavatri
Автор

Hi, William, I am facing issue with series of react native fashion course with reanimated2

shcodetech
Автор

Can please do apple music onboarding interaction bubble select video

TrialsFromTly
Автор

Can I ask what font you're using for your editor?

edistar
Автор

the numbers got a big laggy after you wrapped them with CRT

__edward
Автор

How can we learn Skia shader language?

bryanenid
Автор

Would you please open a discord server for your community ?
Some of your projects have some issues and it's hard to fix them without any help.

plushub
Автор

wow, I wish I could undestand 0.1% of this

AnotherJoao