Search found 7 matches

by MynameisBI
Thu Nov 30, 2023 8:19 am
Forum: Support and Development
Topic: Check if the web build is working every time a commit is pushed
Replies: 2
Views: 2048

Check if the web build is working every time a commit is pushed

In the past couple of days, I've been trying to make it so every time someone push their commit to the repository, it will automatically check if the web build have any errors. What I've done so far is creating a workflow that builds a web package with Davidobot/love.js and host it with a python htt...
by MynameisBI
Sun Feb 26, 2023 11:35 am
Forum: Libraries and Tools
Topic: LÖVE Web Builder, a tool to package, build and run LÖVE games for the web
Replies: 15
Views: 58142

Re: LÖVE Web Builder, a tool to package, build and run LÖVE games for the web

User670 wrote: Wed May 13, 2020 6:44 am goto seems to be broken??
It's been 2 years but yes, goto is broken with the web builder. I found it out the hard way.
by MynameisBI
Tue Apr 21, 2020 4:15 pm
Forum: Support and Development
Topic: Center image and resize to actual size
Replies: 3
Views: 2868

Re: Center image and resize to actual size

Hello there. So firstly, you're actually mistaken the last 2 offsets arguments of the love.graphics.draw function. These 2 arguments basically say substract the VIRTUAL_WIDTH / 2 from the 100 . Assuming the scale is normal 1:1, LOVE will then draw the image at coordinate 100 - VIRTUAL_WIDTH/2 , whic...
by MynameisBI
Sun Apr 19, 2020 2:27 am
Forum: Support and Development
Topic: boot.lua 577
Replies: 2
Views: 4523

Re: boot.lua 577

This error happens when you launch the game using the path to the main.lua instead of the path to folder contains the main.lua. Could you tell me what code editor you used and how did you launch the game (from the code editor or the command line) ?
by MynameisBI
Sat Apr 18, 2020 5:25 am
Forum: Support and Development
Topic: Problems of resolution
Replies: 1
Views: 2070

Re: Problems of resolution

Hello, could you attach a .love file and/or explain what's wrong with your game specifically?
by MynameisBI
Sat Dec 21, 2019 7:29 am
Forum: General
Topic: Image Click button
Replies: 4
Views: 4504

Re: Image Click button

You could learn and use one of the available gui libraries to implement a button with a text image, I recommend nuklear Or if a button is the only thing you want, just use the mousepress callback to check if someone click on the text Or do you only want the text to be clickable and not the whole but...
by MynameisBI
Fri Dec 20, 2019 8:23 pm
Forum: General
Topic: Image Click button
Replies: 4
Views: 4504

Re: Image Click button

Could you explain exactly what you are trying to do here?

Do you want to make your button clickable or something else?