Search found 3 matches

by 99
Sun Jun 05, 2022 11:40 pm
Forum: Support and Development
Topic: Change Spawn location
Replies: 3
Views: 1196

Change Spawn location

I'm making a simple RPG, How do I change where the player spawns at the beginning? I want to make the player spawn at X: -960, Y: -960

Thank you very much! :awesome:
by 99
Tue Feb 08, 2022 11:03 pm
Forum: Support and Development
Topic: Remove Diagonal Movement (Like in Classic Pokemon Games)
Replies: 3
Views: 3088

Re: Remove Diagonal Movement (Like in Classic Pokemon Games)

Thank you so much! :awesome: You simply have to treat the conditions as mutually exclusive, meaning that only one of the movement directions can be active at any one time. The simplest way to achieve this is changing the if-statements into an if-elseif-chain, like the following: function love.update...
by 99
Tue Feb 08, 2022 9:51 pm
Forum: Support and Development
Topic: Remove Diagonal Movement (Like in Classic Pokemon Games)
Replies: 3
Views: 3088

Remove Diagonal Movement (Like in Classic Pokemon Games)

BRAND new to using Love2d (Literally started yesterday) Just make it work like Pokemon Red & Blue This is my current Code (Please don't make fun of me, I started yesterday) function love.load() player = {} player.x = 400 player.y = 300 player.speed = 5 player.size = 10 end function love.update(...