Search found 17 matches

by bigbruhh0
Sat Apr 10, 2021 4:10 pm
Forum: Support and Development
Topic: my love2d is broken
Replies: 6
Views: 4966

Re: my love2d is broken

slime wrote: Sat Apr 10, 2021 1:28 pm You could try a prerelease build of love 11.4, it has a bunch of fixes: https://ci.appveyor.com/project/AlexSzp ... /artifacts
it is freezes anyway :cry: :cry:
by bigbruhh0
Sat Apr 10, 2021 7:25 am
Forum: Support and Development
Topic: Tables drive me nuts sometimes: how is this wrong?
Replies: 5
Views: 2986

Re: Tables drive me nuts sometimes: how is this wrong?

local map = { {0,1,0,1,0}, {0,1,0,1,0}, {0,1,1,1,0}, {0,0,0,0,0}, } for i,_ in ipairs(map) do for j, _ in ipairs(map) do io.write(map[i][j] .. " ") end io.write('\n') end io.write('\n') Pretty straight forward? Console says: 0 1 0 1 0 1 0 1 0 1 1 1 0 0 0 0 Where did the last column go? :(...
by bigbruhh0
Sat Apr 10, 2021 7:04 am
Forum: Support and Development
Topic: my love2d is broken
Replies: 6
Views: 4966

Re: my love2d is broken

its same for any project, and love2d crushes when im starting it without project https://sun9-46.userapi.com/impg/Jh4fuU6EZwNhp5nGuF0--GKD4iKq9eJOT6xfBg/LAKcUQMfCWM.jpg?size=1280x720&quality=96&sign=c4970567eefb583012db7dcb5c98d15b&type=album there are examples,but i think its not code p...
by bigbruhh0
Fri Apr 09, 2021 10:01 pm
Forum: Support and Development
Topic: my love2d is broken
Replies: 6
Views: 4966

my love2d is broken

when starting any project, the window freezes, as if it entered an infinite loop Has anyone come across this? could it be because I was running corona sdk? (this is a game engine on LUA language) I suppose that it happened precisely because of this, because I did nothing else in this regard https://...
by bigbruhh0
Tue Mar 30, 2021 6:29 pm
Forum: Support and Development
Topic: one touch disappears when approaching to another
Replies: 10
Views: 7179

Re: one touch disappears when approaching to another

i get different results every time, I'm confused xD Try the touch-02 https://love2d.org/forums/viewtopic.php?f=4&t=90713&p=239686&sid=2a7ab2d0665aaa2b4af391433259db91#p239686 On the 10" tablet I've got the shortest line between touches about 27-50 pixels. same result on my device ,...
by bigbruhh0
Tue Mar 30, 2021 2:59 pm
Forum: Support and Development
Topic: one touch disappears when approaching to another
Replies: 10
Views: 7179

Re: one touch disappears when approaching to another

i get different results every time,
I'm confused xD
by bigbruhh0
Tue Mar 30, 2021 2:50 pm
Forum: Support and Development
Topic: one touch disappears when approaching to another
Replies: 10
Views: 7179

Re: one touch disappears when approaching to another

ok , i checked minimal distances by your example :
horizontal : about 110 px
vertical: about 80 px
diagonal: about 70 px
by bigbruhh0
Tue Mar 30, 2021 2:39 pm
Forum: Support and Development
Topic: one touch disappears when approaching to another
Replies: 10
Views: 7179

Re: one touch disappears when approaching to another

Disappears it in the touch-01 too? https://love2d.org/forums/viewtopic.php?f=4&t=90678&p=239613#p239611 Yes It looks like the limit by the touch screen resolution. Is the shortest line between touches of two fingers diagonal or vertical/horizontal? i dont know for sure, and i cant imagine h...
by bigbruhh0
Tue Mar 30, 2021 10:00 am
Forum: Support and Development
Topic: one touch disappears when approaching to another
Replies: 10
Views: 7179

Re: one touch disappears when approaching to another

darkfrei wrote: Tue Mar 30, 2021 12:48 am Disappears it in the touch-01 too?
viewtopic.php?f=4&t=90678&p=239613#p239611
code is the same as in this example
by bigbruhh0
Tue Mar 30, 2021 9:05 am
Forum: Support and Development
Topic: one touch disappears when approaching to another
Replies: 10
Views: 7179

Re: one touch disappears when approaching to another

darkfrei wrote: Tue Mar 30, 2021 12:48 am Disappears it in the touch-01 too?
viewtopic.php?f=4&t=90678&p=239613#p239611
Yes