Thought I'd play around with TIC80 and this was a great tutorial, thank you!.
@PotatoImaginator3 жыл бұрын
Sure , Thanks :)
@hootingsalmon00623 жыл бұрын
Thank you so much for this tutorial. I am really struggling with collisions for my game, and this really helps Thanks!!!!!
@PotatoImaginator3 жыл бұрын
Sure , thanks :) There are other videos like this
@repenetrator3 жыл бұрын
banger tutorial my good lad
@PotatoImaginator3 жыл бұрын
Thanks :)
@ATS-uy4vl3 жыл бұрын
Very good
@PotatoImaginator3 жыл бұрын
Thanks :)
@Karol-qi5yx3 жыл бұрын
Master :)
@PotatoImaginator3 жыл бұрын
Haha , Thanks :)
@Foxnataa3 жыл бұрын
is so good!
@PotatoImaginator3 жыл бұрын
Thanks !
@Unknown-mo2iy3 жыл бұрын
I didn't understand the dir value can you help?
@PotatoImaginator3 жыл бұрын
Sure , btnp(0) - Up ( dir = 0 ) btnp(1) - Down ( dir = 1 ) btnp(2) - Left ( dir = 2) btnp(3) - Right ( dir = 3 ) Now , dir_x={ [0] =0 , 0 , -1 , 1 } dir_y = { [0] = -1 , 1 ,0 ,0 } Now x=x + dir_x[dir] y=y + dir_y[dir] -- UP dir =0 -> x=x+dir_x[0] -> x=x -> y=y+dir_y[0] -> y=y - 1 -- DOWN dir =1 -> x=x+dir_x[1] -> x=x -> y=y+dir_y[1] -> y=y + 1 -- LEFT dir=2 -> x=x+dir_x[2] -> x=x-1 -> y=y+dir_y[2] -> y=y -- RIGHT dir=3 -> x=x+dir_x[3] -> x=x+1 -> y=y+dir_y[3] -> y=y Now , if btnp(0) then dir=0 elseif btnp(1) then dir=1 elseif btnp(2) then dir=2 elseif btnp(3) then dir=3 end if dir~= -1 then ( that is dir =0 , 1 , 2 , 3 ) x=x+dir_x[dir] y=y+dir_y[dir] end dir = -1 ( If no button is pressed )