Search found 42 matches

by borr
Sun Feb 14, 2021 8:14 pm
Forum: Libraries and Tools
Topic: love.maker (automated distribution + minification)
Replies: 25
Views: 39518

Re: love.maker (automated distribution + minification)

thanks, I'll try this solution
by borr
Sun Feb 14, 2021 7:56 pm
Forum: Libraries and Tools
Topic: love.maker (automated distribution + minification)
Replies: 25
Views: 39518

Re: love.maker (automated distribution + minification)

i created a separate script build.lua with code from your example. how to run this script?
by borr
Sun Feb 14, 2021 5:58 pm
Forum: Libraries and Tools
Topic: love.maker (automated distribution + minification)
Replies: 25
Views: 39518

Re: love.maker (automated distribution + minification)

how should i use this? should i put lua separately?
love start onlu main.lua file
by borr
Sun Feb 14, 2021 8:55 am
Forum: Support and Development
Topic: editor + debug love2d
Replies: 2
Views: 3531

editor + debug love2d

I want to share my experience of setting up an vscode editor for debugging code (OS Windows 10) 1. create task { "version": "2.0.0", "tasks": [ { "label": "LOVE", // The command is the path to your love install exe. "command": "C:/Prog...
by borr
Fri Feb 05, 2021 7:00 am
Forum: General
Topic: how to check for errors in the syntax of scripts for love2d?
Replies: 9
Views: 6838

how to check for errors in the syntax of scripts for love2d?

can i check all project files?
how to output the check result to the console?
which tool is best for this?
by borr
Sun Oct 11, 2020 9:24 am
Forum: Libraries and Tools
Topic: Slab - An Immediate Mode GUI Library In Lua
Replies: 98
Views: 278654

Re: Slab - An Immediate Mode GUI Library In Lua

Сan you show an example of creation node graph with slab?
like this
https://github.com/thedmd/imgui-node-editor

thanks.
by borr
Thu Jan 23, 2020 6:55 pm
Forum: Support and Development
Topic: loveframes scale panel
Replies: 0
Views: 3767

loveframes scale panel

how to scale the panel with all its contents? should I use new canvas for each panel?
by borr
Sun Dec 29, 2019 2:31 pm
Forum: Support and Development
Topic: why the movement is not smooth
Replies: 3
Views: 2897

Re: why the movement is not smooth

thanks for your answers
by borr
Fri Dec 27, 2019 7:54 pm
Forum: Support and Development
Topic: why the movement is not smooth
Replies: 3
Views: 2897

why the movement is not smooth

local x = 1.0; local deltax; local dtTime; function love.load() x = 5.0; deltax = 10.0; end function love.draw() love.graphics.print(string.format("dt:%f - x:%f", dtTime, x), 0, 20); love.graphics.rectangle("fill", x, 200.0, 50.0, 80.0); end function love.update(dt) x = x + 1.0 ...