Search found 678 matches

by GVovkiv
Sun May 23, 2021 5:21 pm
Forum: General
Topic: love2d and lua installation on windows 10
Replies: 17
Views: 17136

Re: love2d and lua installation on windows 10

@GVovkiv He's probably trying to do something special. "Love already has everything you need inside it's folder. It doesn't need external dependencies." ☆ (If you want help with english, I'm really into teaching! I'm trying to make games for it.) @Deb75 are you wanting to use Luarocks to ...
by GVovkiv
Sun May 23, 2021 4:03 pm
Forum: General
Topic: love2d and lua installation on windows 10
Replies: 17
Views: 17136

Re: love2d and lua installation on windows 10

Love already have anything you need inside it's folder
it don't need external dependencies
by GVovkiv
Wed May 12, 2021 8:57 am
Forum: Support and Development
Topic: Help with starting
Replies: 4
Views: 6396

Re: Help with starting

LitPotato2895 wrote: Tue May 11, 2021 11:54 pm So, im not sure if i missed something, or if this is how its supposed to work, but i opened LOVE and it just said no game, can anyone tell me what i should do or what i did wrong? Thank you! :nyu:
https://studio.zerobrane.com/ nice IDE for Lua and Love
by GVovkiv
Mon May 10, 2021 5:32 pm
Forum: Games and Creations
Topic: My first ever game published: itch.io
Replies: 5
Views: 9675

Re: My first ever game published: itch.io

Gunroar:Cannon() wrote: Mon May 10, 2021 3:50 pm
togFox wrote: Sun Apr 18, 2021 4:35 am It's a prototype and there is much more to go but just wanted to tick off this bucket list item. :)

https://togfox.itch.io/tactical-gridiron
:awesome: Nice! You finally got it done(or near done anyway)! Good cream-I mean work!
mmm.. cream
by GVovkiv
Mon May 10, 2021 11:57 am
Forum: Games and Creations
Topic: My first ever game published: itch.io
Replies: 5
Views: 9675

Re: My first ever game published: itch.io

togFox wrote: Mon May 10, 2021 9:05 am I received my first ever donation on itch. Whoot! I'm off to the bank! lol

(Not really. It is entirely likely that is my one and only donation but still exciting!)
Well, good job!
by GVovkiv
Sun May 09, 2021 6:55 am
Forum: Support and Development
Topic: Program aborted (core dumped)
Replies: 2
Views: 5484

Re: Program aborted (core dumped)

Full error log maybe?
by GVovkiv
Tue May 04, 2021 4:22 pm
Forum: Support and Development
Topic: [Solved] "Unmodifiable" table gets wiped after using it
Replies: 7
Views: 7191

Re: "Unmodifiable" table gets wiped after using it

I need to keep "choices" unmodified, to reuse it later. local choices = {1,2,3,4} local choices2 = choices -- linked copy You are need a make a copy, not linked copy: local choices = {1,2,3,4} local choices2 = {} -- new table, not linked to the "choices" for i, v in pairs (choic...
by GVovkiv
Tue May 04, 2021 4:12 pm
Forum: Support and Development
Topic: [Solved] "Unmodifiable" table gets wiped after using it
Replies: 7
Views: 7191

Re: "Unmodifiable" table gets wiped after using it

local shuffled = {} local choices = {1,2,3,4} local function shuffle(tab) local result = {} for _ = 1, #tab do local rand = love.math.random(#tab) table.insert(result, tab[rand]) end return result end function love.keypressed(key) if key == "q" then shuffled = shuffle(choices) end end fun...
by GVovkiv
Sun May 02, 2021 5:42 am
Forum: Support and Development
Topic: An odd question: console on 2nd monitor
Replies: 3
Views: 5440

Re: An odd question: console on 2nd monitor

togFox wrote: Sun May 02, 2021 2:02 am That work. :) The layout is relative to the first monitor - which at first wasn't helpful, then I realised to default to my left hand display then I can set the default position to -1000 (a negative number) and it would display it off the side and away from my main monitor. :)
Nice
by GVovkiv
Sat May 01, 2021 8:17 am
Forum: Support and Development
Topic: An odd question: console on 2nd monitor
Replies: 3
Views: 5440

Re: An odd question: console on 2nd monitor

An odd one - but my workflow is a) launch project b) check console for debug statements (print) The console ALWAYS launches behind my main window and I always have to go and hunt for it and bring it to the top. Sounds trivial, but when you repeat this countless times per hour it makes you wonder if...