Search found 7 matches

by flaschenzug
Sun Jan 01, 2023 10:21 am
Forum: Support and Development
Topic: background image as level background (love2d)
Replies: 7
Views: 2480

Re: background image as level background (love2d)

Thanks knorke, I love to figure out the math on my own :-).
Going to have a look at your link.

Happy new year :-)
by flaschenzug
Mon Dec 26, 2022 10:29 am
Forum: Support and Development
Topic: background image as level background (love2d)
Replies: 7
Views: 2480

Re: background image as level background (love2d)

Do you already have the rest of your game working? If you have the planets and asteroids working then you could do background stars in the same way - just without collision. I would not use a dozen-thousand pixels image as background. Space is mostly empty anyway. Instead draw individual stars. You...
by flaschenzug
Sun Dec 25, 2022 11:52 am
Forum: Support and Development
Topic: background image as level background (love2d)
Replies: 7
Views: 2480

Re: background image as level background (love2d)

Thanks Brot. So you would suggest that I move the other elements instead? This is my idea (mostly to learn a lot about how lua/löve works): - There should be a spaceship (centered). - There is a background. - There are planets (the spaceship is not supposed to touch the planets) - There are asteroid...
by flaschenzug
Sat Dec 24, 2022 11:30 pm
Forum: Support and Development
Topic: background image as level background (love2d)
Replies: 7
Views: 2480

background image as level background (love2d)

Hey there, I would like to have a character that is followed by a camera. And the character should be able to walk around in a world (a big image) that is in the background (no tiles needed). But I can't find a working solution or even an example of that. So what I am looking for is: - we have a big...
by flaschenzug
Thu Dec 22, 2022 11:10 am
Forum: General
Topic: lua and love2d via terminal like in tutorial
Replies: 7
Views: 2637

Re: lua and love2d via terminal like in tutorial

Especially the version you have there , 5.4, has a lot incompatibles, you should follow older tutorials if you want to use Löve. Lua 5.4 has incompatibles wit löve ? How do you develope games in löve, if you don't use lua but luajt? And have you ever published a game / app on the google playstore /...
by flaschenzug
Thu Dec 22, 2022 11:06 am
Forum: General
Topic: lua and love2d via terminal like in tutorial
Replies: 7
Views: 2637

Re: lua and love2d via terminal like in tutorial

Thank you all for your replies. I found a way ... its described here: https://love2d.org/wiki/Getting_Started the solution was simple. Just add the path to love to the ~/.bash_profile (OS X) open the .bash_profile file open -a TextEdit ~/.bash_profile write this code ... # alias to love alias love=&...
by flaschenzug
Tue Dec 20, 2022 10:03 pm
Forum: General
Topic: lua and love2d via terminal like in tutorial
Replies: 7
Views: 2637

lua and love2d via terminal like in tutorial

Hey there, I just started to learn lua and like to work with it on a mac. I installed Lua using Brew and can execute the files via terminal. And now I like to work with Love2d like the guy in this (i think great) tutorial. https://youtu.be/I549C6SmUnk?t=7020 In the section "Setup and LUD basics...