ความคิดเห็น •

  • @kman41000
    @kman41000 ปีที่แล้ว +5

    Love your tutorials and how you explain the logic behind the math in paint, awesome man!

  • @nilsz6936
    @nilsz6936 ปีที่แล้ว +4

    Your coding tutorials are just amazing 👏

  • @draque8730
    @draque8730 ปีที่แล้ว

    this voice is so chill that I wanna code just hearing it. big thanks from France

  • @BryanChance
    @BryanChance ปีที่แล้ว +5

    At at 18:57, line 30 let alienHeight = tileSize . The cursor is hiding part of the i in Size. I thought it's some dirt on my screen. It's on other places too. LOL
    Great video....

  • @hapikus5157
    @hapikus5157 ปีที่แล้ว +2

    Thanks a lot, it is amazing, very helpful! With this voice u can easy be ASMR full time streamer.

  • @TalRimoni
    @TalRimoni ปีที่แล้ว +1

    This looks amazing, love your tutorials!

  • @sanskrutipatil25
    @sanskrutipatil25 20 วันที่ผ่านมา +1

    Which packages or extensions you've downloaded...plz reply...Ship and aliens are not appearing also live server is not working plz help

  • @JonathanTrinityMartin
    @JonathanTrinityMartin 2 หลายเดือนก่อน

    Thanks, tutorial commenced!

  • @ceceliabraswell978
    @ceceliabraswell978 ปีที่แล้ว +2

    Has anyone added a "start game" button? I am attempting to, but I am having trouble figuring out what specific code to move to my add event listener that listens out for a click on the button. I have been moving code from the window.onload function, but I have game play issues with anything that I move. Any feedback on how you made a play button work would be great.

  • @ellis-pr7hh
    @ellis-pr7hh ปีที่แล้ว +2

    i have one question, we could have used board height and width for positioning of bullets or cannon etc..? cause you know in the 2 tutorials that i've watched of yours u used board height and width for setup

    • @KennyYipCoding
      @KennyYipCoding ปีที่แล้ว

      Not sure what you mean exactly, but if the math adds up correctly, then it should be fine

  • @PAKISTAN_GAMER
    @PAKISTAN_GAMER ปีที่แล้ว +2

    Can i add animated space ship or animated alien ship? If yes then how can i do that?

  • @ASASINYOLO42
    @ASASINYOLO42 ปีที่แล้ว +1

    Thank you for this piece of art man!

  • @LuisHernandez-so8vu
    @LuisHernandez-so8vu ปีที่แล้ว +2

    Amazing! , one thing I am confused about is:
    ship.x - shipVelocityX >= 0)
    ship.x + shipVelocityX + shipWidth

    • @btwow
      @btwow ปีที่แล้ว +1

      ship has a width of 2 *tilesize(64)
      (coordinate of the ships top left corner)'ship.x', at the center of the game board is (224)
      width of 1 'shipVelocityX' is 1 tileSize(32)
      the game board has a width of tilesize(32) * columns(16) = 512
      when u move the ship to the left 1 tilesize by pressing left arrow 1 time, you are substracting shipVelocityX(32) from ship.x(224)
      (224 -32)=192,when u move left again(192-32)=160,when u move again(160-32) =128.....when ship.x(32) - shipVelocityX(32) = 0,after this, the ship has reached the left border of the board ,then the event listener on arrowleft stops working and u cant move the ship to the left nomore

    • @btwow
      @btwow ปีที่แล้ว

      the reason the arrow right 'if condition' is diffrent is becasue,as i mentioned above 'shipX' is the coordinate of the topleft corner of the ship,this means the topright corner coordinate is shipX + shipWidth.
      so when u move the ship to the right we are adding the coordinate of the whole ship(shipX + shipWidth) + shipVelocityX.
      so,when the ship is at the center shipX is 224, when we want to move the ship to the right we want the coordinate of the topright corner of the ship aswell,that is tilesize*2, (shipX)224+(topright)(64) +shipVelocity(32) =320,when u move right again 320+32 =352, ...384...416... when it reaches 512 the event listener stops working and u cant move right anymore.

  • @skylskyler
    @skylskyler ปีที่แล้ว +1

    love ur projects man.👏

  • @saketha218
    @saketha218 ปีที่แล้ว +1

    Bro..your projects are amazing but what I feel is add an ending also to the project, it will be very helpful, ending in the sense like a popup like game over or your score is so and so..anyways thank you so much for your efforts

  • @bravefart651
    @bravefart651 ปีที่แล้ว +1

    How can I add audio? Thanks in advance.
    Sussed it out man. Keep up the good vids 👍

  • @scaravanasimoneau7523
    @scaravanasimoneau7523 ปีที่แล้ว +1

    Thank you food the hardwork!!!

  • @just_a_harmless_jacketat
    @just_a_harmless_jacketat ปีที่แล้ว +2

    Good job man 👍

  • @duckod
    @duckod 8 วันที่ผ่านมา

    Love this but the score isn't showing even tho i did ot correctly

  • @javiermollar3914
    @javiermollar3914 ปีที่แล้ว

    I followed the instructions step by step and at minute 16 when I want to move the ship with left arrow or right arrow it doesn't respond... it's in the same place...

    • @KennyYipCoding
      @KennyYipCoding ปีที่แล้ว +1

      Did you misspell something or rename something? Make sure you add the click handler too that calls the move ship function

    • @javiermollar3914
      @javiermollar3914 ปีที่แล้ว

      @@KennyYipCoding I had written "keydown" with a capital letter....!!!... Thank you for everything...!!!... yours is very good....

  • @Deaddevil346
    @Deaddevil346 10 หลายเดือนก่อน

    u web amaizing man i didnt have time to check eyery thing but i did check check some of the :({}

  • @theresidentotaku
    @theresidentotaku ปีที่แล้ว

    At 12:33 my ship does not appear, why is this?

    • @gorg212
      @gorg212 ปีที่แล้ว

      ship.onload( function () { context.drawImage(shipImg, ship.x, ship.y, ship.width, ship.height) } )

  • @hjikingali7625
    @hjikingali7625 ปีที่แล้ว

    👍❤️

  • @anugerahterindah5736
    @anugerahterindah5736 ปีที่แล้ว

    Im your student sensei🏀

  • @developing_pain
    @developing_pain ปีที่แล้ว

    Started 25/04/2023 completed 04/30/2023