Making a Shmup #2 - Moving Stuff - Pico-8 Hero

  Рет қаралды 20,123

Lazy Devs

Lazy Devs

Күн бұрын

Пікірлер: 42
@Ellohir
@Ellohir 2 жыл бұрын
I've been programming for 15+ years but the videos are so well explained that I'm watching them anyway 🤣 At the very least I'm learning how to teach the basics 🎉
@GnobarEl
@GnobarEl 2 жыл бұрын
I totally agree with you. I know the basics of pico8 but even so I love to watch the videos and I still learn new things.
@crouchingpython3294
@crouchingpython3294 7 ай бұрын
You're such a great teacher! As a long-time teacher, I can tell -- great analogies, great pacing, great opportunities to play with concepts. Also a great sense of humor! Love it.
@jacklawsen6390
@jacklawsen6390 2 жыл бұрын
I enjoy how you explain the concepts with analogies and visuals, like a variable being like the cup with a name. Knowing that beneath the techno-babble there are ideas that they already understand really helps people become more comfortable and confident.
@toniehanga8232
@toniehanga8232 11 ай бұрын
greetings from Poland, an unexpected mentioning hehe, l love your tutorial!
@LazyDevs
@LazyDevs 11 ай бұрын
Cześć!
@Autoskip
@Autoskip 7 ай бұрын
I've already got some programming experience, and have even made a few attempts at figuring out Pico-8 (though I've been slightly tutorial avoidant), and now that Picotron is here, I decided to actually sit down and follow some tutorials - so, since the mouse is a lot more accessible in Picotron, my mock-up from last episode's doggy time put the ship at the mouse location. …needless to say, this episode wasn't very useful to me, but that didn't stop me from watching it all the way through! Keep up the good work, I'm sure it's going to get me a lot closer to actually making games of my own!
@D0S81
@D0S81 Жыл бұрын
For anyone curious on some other keyboard shortcuts like the copy n pasting of code. Ctrl+up takes u to the top of the code, & Ctrl down goes to the bottom. Shift + up will select code in yellow one line per press, as will shift down. Ctrl+X is cut and will cut your selected code out Ctrl+V will paste that code back where u want it. Ctrl+Z is the most handy of all. the undo button. I think i use this more than anything.
@whycantwebefriends9178
@whycantwebefriends9178 2 жыл бұрын
Your Pong Tutorial was great. But one can really see how you developed as a teacher. This is awesome!
@FloatingSunfish
@FloatingSunfish 2 жыл бұрын
Real hyped for this new series! 😊
@collinkim9839
@collinkim9839 Жыл бұрын
been trying to learn how to make a video game for a while and this is actually one of the best tutorial series ive seen
@salk-e8346
@salk-e8346 6 ай бұрын
this is helping me so much, I was kind of afraid to start programming because of some rough start some years ago.
@dnddmdb642
@dnddmdb642 2 жыл бұрын
I've already watched your other tutorials but it is so satisfying to see how you approach concepts. Makes me want to pick up Pico-8 again!
@dogbonestudios4783
@dogbonestudios4783 2 жыл бұрын
Wow! You are the best Pico8 developer I've ever seen. I saw your shmup boss fight youtube short and it is AWESOME!!
@marcuskobel6562
@marcuskobel6562 2 жыл бұрын
Perfect, that's the tutorial I was expecting! Thanks
@Sveclord
@Sveclord 4 ай бұрын
You're my hero! Wonderful guy and excellent tutorial :) Thank you!!
@thacuber2a03
@thacuber2a03 2 жыл бұрын
epic intro 10/10 would watch again
@ChainPenguin
@ChainPenguin 2 жыл бұрын
That is a amazing 10 sec spaceship. 10/10
@jackgalluzzi9569
@jackgalluzzi9569 2 жыл бұрын
krys you are so awesome! Im so grateful for your content, its very fun, clever and feels like I'm actually learning something at the same time. Also, the Doggie zone is fantastic. really separates your content from other creators. Thank you! thank you thank you!
@LazyDevs
@LazyDevs 2 жыл бұрын
Glad to hear! Thank you for watching!
@TroyFletcherKeyboards
@TroyFletcherKeyboards 2 жыл бұрын
"It's an older meme, sir, but it checks out." Updock? What's up doc?
@nossvelic
@nossvelic 2 жыл бұрын
love it bring the shenanigans
@pedropaez1349
@pedropaez1349 2 жыл бұрын
Awesome content, thank you so much!
@kevinbatdorf
@kevinbatdorf 2 жыл бұрын
At 9:05 what’s updog?
@kittyn5222
@kittyn5222 2 жыл бұрын
Hi so apparently I can't save on the edu edition and it only shows me runtime error when I try to do anything more complex than print spr cls rect or circ or circfill or rectfill I tried to make a walk
@LazyDevs
@LazyDevs 2 жыл бұрын
In the edu version when you save it downloads the p8 file onto your computer. Check your downloads folder. If it's not there ask around in the lexaloffle.com forums.
@LordmonkeyTRM
@LordmonkeyTRM 2 жыл бұрын
Why's Tori from Mythbusters putting on that accent???😁 Also Congrats on 10k Also also can you use decimals on values or just whole numbers?
@LazyDevs
@LazyDevs 2 жыл бұрын
I'll take it! Tori always seemed like he had the most fun on the show. RIP Grant tho ;_(
@D0S81
@D0S81 Жыл бұрын
This is good, and while ive managed to mess around with harry putting it in other places. I still dont get WHAT harry is. I know its a function with a variable. But what does harry represent? As in what is the variable? (I think) I think what im asking is why? So if HARRY=40 and i put harry within a function so it becomes say SPR(1,HARRY,1) Why can't i just put SPR(1,40,1) and when i do, why is doing something different despite harry being 40? So what does harry represent? Like i kinda get it but i get confused on the why. And why is harry=40 different from just 40? At least i think thats what i'm asking. This is harder to explain that i thought. I think the question is if harry means 40, then what does the 40 represent....i think.
@LazyDevs
@LazyDevs Жыл бұрын
"Why can't i just put SPR(1,40,1)" You can. But using a variable instead of the 40 allows you to manipulate the variable elsewhere in the code and that is how the sprite moves. If you put in the 40, the sprite will never be able to move. It will always stay at 40.
@D0S81
@D0S81 Жыл бұрын
@@LazyDevs that actually makes a lot of sense. i'm about to start lesson 5 now, and its really cool to see it coming together and mess about with stuff. these lessons are great btw. last time i tried coding i think i was 10, and it was on a commodore 64 with a big book of C++.and i think i learned how to draw a square before just using it to play games. and now finally thanks to your wisdom, i finally get to try and make one. so thanks man.
@briannewhard4311
@briannewhard4311 2 жыл бұрын
Why is the circle's color changing?
@LazyDevs
@LazyDevs 2 жыл бұрын
Excellent question! Will be addressed in the next episode. Yeah it's a bit weird.
@matzieq
@matzieq 2 жыл бұрын
So having watched part 1 and a little bit of this one, I can tell you this: I've always enjoyed the relaxed, laid back style of your tutorials and the occasional stupid joke, but you should really consider toning down the funny in this series. This is of course my opinion, but to me sometimes it feels forced, and there's a bit too much of it, to the point of distraction. But overall, I think it's much better than the intro to programming in breakout, and I'm excited to seer the result, and (especially) season 2!
@matzieq
@matzieq 2 жыл бұрын
See the sandwich I've done without even realizing it? Is that profesh or what? :-P
@LazyDevs
@LazyDevs 2 жыл бұрын
Yeah that's a proper sandwich! Thanks for the feedback. Much appreciated!
@awyeagames
@awyeagames 2 жыл бұрын
@@LazyDevs I'm actually enjoying the amount of funny. Considering the idea of these first episodes is to introduce basic programming concepts to absolute beginners, I feel it makes the experience more approachable and entertaining. I'd say you are at the sweet spot on "the funny factor" in these two episodes. The other series you did were kinda tedious sometimes, although very informative. This one so far feels fresher. Perhaps later on, when you finish explaining basic concepts, then tone down the funny. I feel like most people will skip these first episodes either way, unless they are absolute beginners to programming.
@bolgerasful
@bolgerasful Жыл бұрын
I love the funny, doesn’t feel forced at all!
@robertgravina
@robertgravina Жыл бұрын
I think the amount of funny is perfect! I'm an experienced developer but new to the pico 8, and this makes watching/following along with these in my spare time fun. I don't have the energy to go through typical tutorials for app frameworks etc. after a day of work. This is something most of us probably do for fun, and even if not, making games and learning about programming should be fun! Keep up the great (and funny) tutorials!
@Ninna636
@Ninna636 Жыл бұрын
😢open projet ?
@LazyDevs
@LazyDevs Жыл бұрын
wat
@flaviopsilva_
@flaviopsilva_ 2 жыл бұрын
I really like your videos
Making a Shmup #3 - Controls - Pico-8 Hero
43:38
Lazy Devs
Рет қаралды 15 М.
Particles in Pico-8 - The Ultimate Guide
16:49
SpaceCat
Рет қаралды 7 М.
БУ, ИСПУГАЛСЯ?? #shorts
00:22
Паша Осадчий
Рет қаралды 2,6 МЛН
How Much Tape To Stop A Lamborghini?
00:15
MrBeast
Рет қаралды 198 МЛН
Walking on LEGO Be Like... #shorts #mingweirocks
00:41
mingweirocks
Рет қаралды 7 МЛН
World’s strongest WOMAN vs regular GIRLS
00:56
A4
Рет қаралды 43 МЛН
Creating a Space Invaders clone using my C++ engine and SFML
11:58
Pezzza's Work
Рет қаралды 38 М.
8 Reasons We Love PICO-8 [2021]
13:48
Ask Gamedev
Рет қаралды 113 М.
Creating objects using tables in Pico-8
14:44
doc_robs
Рет қаралды 9 М.
Dear Game Developers, Stop Messing This Up!
22:19
Jonas Tyroller
Рет қаралды 727 М.
Making SPACE INVADERS in C++ - SFML Gamedev - Devlog
12:56
Kofybrek
Рет қаралды 29 М.
Making a Shmup #4 - Shooting - Pico-8 Hero
33:07
Lazy Devs
Рет қаралды 14 М.
Easy Pico-8 Collision Function - Simple Collision Explained!
9:12
Delightful Game Development with PICO-8
6:58
Dylan Bennett (MBoffin)
Рет қаралды 149 М.
БУ, ИСПУГАЛСЯ?? #shorts
00:22
Паша Осадчий
Рет қаралды 2,6 МЛН