Thank you, thanks to your tutorial I understand a little more about the concept of objects in Java.
@matildebrandao637716 сағат бұрын
Hey! I've just started watching ur tutorial on this and i have been loving it! An ideia, do you think you could teach us to make the dialogue and an image by it side with the character talking but in a more detailed way (pixel art ofc) like in Stardew Valley or Sea of Stars, that would be super cool! Anyways, loved ur content! :>
@zeradroong-op7dg17 сағат бұрын
Does eclipse work on Macs?
@danielreid102321 сағат бұрын
Hope you return to making these kinds of videos.
@lourdallenamante6797Күн бұрын
why do i need to input 16 x 16 png image? why do i get an error when i use other resolution?
@prathamtamboli3032Күн бұрын
@RyiSnow where can i get the code i want it for my school project
@junedmanihar200_62 күн бұрын
i wnat code pl
@davidcfrogley2 күн бұрын
Alternative way to display playTime: String.format("Time: %.2f", playTime)
@itsjohn51733 күн бұрын
Bro, I got stuck at part 3 of your video because of this problem at 0:51. I spent 5 hours trying to figure it out until I finally found this 😭.
@davidcfrogley3 күн бұрын
I modified the boot concept slightly so you only move quickly if you're holding shift (i.e., it increases your max speed, which you access by holding shift).
@ds-mt3wk4 күн бұрын
can pls somebody tell me where can i download those pics for titltes, npcs and other characters??
@RussBootlegMan5 күн бұрын
Cool, but Is there a way to package both the JRE and the JAR of your application into a single .EXE executable? I'm not talking about a .EXE installer or a .MSI, but rather a single .EXE executable that has everything needed to run your Java app.
@Messmer-p6n8b5 күн бұрын
Hey Ryisow, I had some unsolvable issues while learning your BlueBoyAvanture 2D game: there were always strange shapes outside the map boundary, which caused me to have problems with the A* algorithm. I would like to know if you can help me with this, then I would appreciate it!
@ugib83777 күн бұрын
Not sure if anyone else will have this problem, but I'm gonna leave this here just in case. Fresh install of Eclipse on linux mint and I was having a heck of a time getting the import javax.swing.JFrame; line to work with my project. Spent hours trying to troubleshoot with stackoverflow. Finally found some obscure video with the following fix that worked. Within your project, goto the module-info.java folder. Edit the file in there. Within the curly braces add the line requires java.desktop; Don't forget to save the file. You should now have the access you need to import JFrame as he shows in this video.
@TheClockmister7 күн бұрын
RyiSnow, you should take a look at design patterns!
@TeejayTrehan-s6k7 күн бұрын
how to install install eclipse
@Shaun.is.typing7 күн бұрын
👑 👑
@minichampi73857 күн бұрын
Thank you so much!
@ugib83777 күн бұрын
Happy to hear that this was taken care of by KZbin. This is one of the dangers of posting your work online. Too easy for others to copy. It is even worse with Open Source engines like Godot. Where people can just decompile your games and rip you off entirely. I realize that anything can be decompiled, but I feel like it is a lot more common with engines that a ton of people use. As from scratch Java programming is a bit more niche.
@ugib83778 күн бұрын
Great video! Another method for comments is using /* anything in between these will be commented, even on multi line */ Not as convenient as Ctrl-/. But a functional way to slice out chunks of code with a few key presses.
@MehediHasan-c9w4v8 күн бұрын
Hi! When I was playing this game, I noticed that if I am holding the 'w' key, the other keys is not working. It would be better if we press any one key of w or a or s or d, we can change the direction of the player even while holding any direction changer key. I also noticed that only while holding the 'd', I can use any any other key. If I can change the direction of the player while holding any direction changer key, it will greatly help me while playing.
@meltang-s4b8 күн бұрын
Which code editor are you using?
@RyiSnow8 күн бұрын
Eclipse!
@ugib83778 күн бұрын
I am going to get so much value out of all of this content. Thanks for taking the time to make it all! I know some programming at this point, mostly Python and C#. I feel kinda meh about Microsoft, and the lack of support for C# outside of VSC/VS. So I am looking to pick up some Java. I look forward to working through your videos, and learning Java with your help!
@SAMUSTORM8 күн бұрын
in a tutorial on yt no design pattern will ever be used!
@MehediHasan-c9w4v8 күн бұрын
Can anyone give me the full code of this game made by RyiSnow?
@HMonst3r9 күн бұрын
Ive placed the doors excatly at the same coordinats as video, but the door to the house is one tile too high, and ive changed its coordinates but it remains in same place
@og_komorebi9 күн бұрын
i have an issue. Whenever my character moves it prints how many keys I have, and when it touches the key it doesn't pick it up
@kealek273710 күн бұрын
Where are you now?
@childvr10 күн бұрын
I hate everything, everything was fine until this tutorial, the whole map wouldnt load, nothing would load, everything broke, i couldnt fix it, i spend days on this.
Сделал карьеру в IT сфере... Всё началось с твоих видео, спасибо тебе❤🎉
@bertramrayhan299913 күн бұрын
thank you so much ryi for your video!. oh after i saw your video i had an idea about making the monster to go up too after it got knockback. so it looks like flying. so i add this in else if(collisionOn == false) if(gamePanel.player.direction.equals("left") || gamePanel.player.direction.equals("right")){ if(knockBackCounter == 1){ worldY -= 1; } if(knockBackCounter == 2){ worldY -= 1; } if(knockBackCounter == 3){ worldY -= 1; } if(knockBackCounter == 4){ worldY -= 1; } if(knockBackCounter == 5){ worldY += 1; } if(knockBackCounter == 6){ worldY += 1; } if(knockBackCounter == 7){ worldY += 1; } if(knockBackCounter == 8){ worldY += 1; } } and i think it looks much cooler!!
@justindioneda720413 күн бұрын
I don't get it but somehow when you let NPC find a path that is near edge of the map (ex. goalCol = 1, goalRow = 2), It does not find a path and just goes to the player's direction, but when you set the coordinates to 2 digit numbers (ex. goalCol = 10, goalRow = 14), it finds the path. I have been stuck at this for hours and I thought this might help for people that are in this part.
@bertramrayhan299913 күн бұрын
because the method can't find the path? even if you set it to 2 digits number if the method cant find the path it wont
@Darth_Bateman14 күн бұрын
Pokemon : "This is treason".
@DEGHOST-b5c14 күн бұрын
@ryisnow there's no asset files
@badpost_op14 күн бұрын
It's funny how Akechi never outright says the Phantom Thieves are garbage (because he's being politically correct and endearing in public appearances) but his fans seem to know that's how he truly feels
@antsvietnam993315 күн бұрын
well, ran into some problems, if i hold D key and press W key, the character travel right will go up, but if i hold W key and press D key, the character travel up and won't go to right side, it's all about the order of the code, i thinhk you will get it, can somebody give me solution
@Luke-t4o15 күн бұрын
Hey for me the lines didn’t work, is there anything you didn’t include in the tutorial?
@RyiSnow15 күн бұрын
Everything is included in the video!
@ぴるぐりむ-c2w16 күн бұрын
渋谷はいろんなコンテンツで使われすぎてもう見ても何とも思わないけど三軒茶屋は感動した
@brad506917 күн бұрын
My sprites keep showing a white background even though I am sure they are transparent. I even used a known sprite from your chess video and it appears white instead of whatever the color of the background is. Any ideas what to try to fix this?
@notgray.17 күн бұрын
can you make a tutorial on how to make a java 2d game on mobile?
@the_not_so_great_unknown217019 күн бұрын
Im having a problem with multiple old man lol, if you interact and chat with the first old man, the second old man you try to interact would make the game crash lol, is this normal?
@the_not_so_great_unknown217019 күн бұрын
Oh I found the problem 😂
@the_not_so_great_unknown217019 күн бұрын
Mine adjust the event tile one block away to the right lol, so the event happened before I even stepped to the event tile how to fix😢