Search found 779 matches

by togFox
Thu Dec 07, 2023 10:34 pm
Forum: General
Topic: Can someone compile for MS Windows pls? (solved)
Replies: 3
Views: 7226

Re: Can someone compile for MS Windows pls?

Got it. Thanks. Had to hunt for that a bit - not a github pro (or fan). Will enjoy more learning. :)
by togFox
Thu Dec 07, 2023 5:31 am
Forum: General
Topic: Can someone compile for MS Windows pls? (solved)
Replies: 3
Views: 7226

Can someone compile for MS Windows pls? (solved)

Love v12.0 has https which I really want to get into and experiment with. This page: https://love2d.org/wiki/lua-https has this text: Compile From Source While lua-https will be bundled in LÖVE 12.0 by default, it's possible to compile the module from source and use it on earlier version of LÖVE. Gr...
by togFox
Sun Dec 03, 2023 9:10 pm
Forum: Libraries and Tools
Topic: Resolution Solution [library]
Replies: 54
Views: 77197

Re: Resolution Solution [library]

Will 3001 work with Love 11.4?
by togFox
Wed Nov 15, 2023 9:34 pm
Forum: Games and Creations
Topic: Medieval Zombie Dungeon Crawler
Replies: 12
Views: 77308

Re: Medieval Zombie Dungeon Crawler

Maybe dev needs to set monitor brightness to 'normal' and then check game brightness. Even better is to have a game option for that.
by togFox
Tue Nov 14, 2023 1:31 pm
Forum: Games and Creations
Topic: Vixy's Idea - Progress 1
Replies: 1
Views: 3306

Re: Vixy's Idea - Progress 1

We're going to have to rename Love2d to Love3d.
by togFox
Tue Nov 14, 2023 11:31 am
Forum: General
Topic: Wanted to show off 9 seconds
Replies: 2
Views: 3655

Wanted to show off 9 seconds

So - NONE of this work is mine but wanted to show off the most professional work I've never done. The code is from the love community github and the sound is from our very own Eric Matyas. I present a cool splash screen - play with sound. https://codeberg.org/togfox/Autarky4/src/branch/main/Resource...
by togFox
Mon Nov 13, 2023 3:52 am
Forum: Games and Creations
Topic: The Starknight JRPG is on Kickstarter now ^^
Replies: 2
Views: 7328

Re: The Starknight JRPG alpha demo is out!

Wow. Super pro. Well done. How long did that take?
by togFox
Mon Nov 13, 2023 12:07 am
Forum: General
Topic: Are you using anim8 for animation?
Replies: 5
Views: 10037

Re: Are you using anim8 for animation?

You can see here I create a flame animation and add it to the animation table. Futher down I draw all animations on the animation table in a generic way. During the update I do two things: reposition the animation because they are sometimes overlaid on top of a moving image and then decrease the tim...
by togFox
Sun Nov 12, 2023 9:50 pm
Forum: General
Topic: Are you using anim8 for animation?
Replies: 5
Views: 10037

Re: Are you using anim8 for animation?

I used anim8 for a very long time while learning love. I then realised I could roll my own animations by tracking some very simple properties and quads: - which frame to show - how quickly to change frames - how much time is left on this frame - how many frames in total - should this loop? And then ...
by togFox
Sun Nov 12, 2023 4:51 am
Forum: General
Topic: Are you using anim8 for animation?
Replies: 5
Views: 10037

Re: Are you using anim8 for animation?

https://github.com/kikito/anim8 local animation = anim8.newAnimation(frames, durations, onLoop) onLoop is an optional parameter which can be a function or a string representing one of the animation methods. It does nothing by default. If specified, it will be called every time an animation "loo...