Search found 793 matches

by togFox
Mon Feb 26, 2024 3:54 am
Forum: Games and Creations
Topic: I made a new game with LÖVE, Your Shots Count
Replies: 2
Views: 2912

Re: I made a new game with LÖVE, Your Shots Count

Congrats on the release. :)

Steam integration and shaders are things I've yet to get into.
by togFox
Sat Feb 24, 2024 2:05 am
Forum: Games and Creations
Topic: Backyard gridiron manager released
Replies: 3
Views: 3361

Re: Devblog: Backyard gridiron manager

v0.01 pre-alpha developers version is now available! This is a super raw version but I'm making it available for the brave and foolhardy. This project will continue for many more months and I didn't want to wait that long to make this game available. v0.01 is functional - it works - only just. Many...
by togFox
Sun Feb 18, 2024 4:03 am
Forum: Games and Creations
Topic: Backyard gridiron manager released
Replies: 3
Views: 3361

Backyard gridiron manager released

https://img.itch.zone/aW1nLzE1MDgwMzI4LnBuZw==/original/DNLfxt.png https://togfox.itch.io/backyard-gridiron-manager Backyard gridiron manager A gridiron (American football) management game where you look of a bunch of stats and numbers and performance metrics for players, form a roster by balancing...
by togFox
Sat Feb 17, 2024 9:07 am
Forum: Games and Creations
Topic: Madcrawl (alpha build) - "Traditional" Roguelike
Replies: 13
Views: 4102

Re: Madcrawl (alpha build) - "Traditional" Roguelike

Have to tap key twice to start the game. Can I tap just once? The constant droning noise in the bground? Does it ever stop? Left handers don't use WSAD. It seems turn based but hard to tell. My friends move too far ahead and I've lost them. The 'chat' log is at the top but my character is centre of ...
by togFox
Thu Feb 08, 2024 11:42 pm
Forum: General
Topic: How do you code and deploy DLC's?
Replies: 10
Views: 4451

Re: How do you code and deploy DLC's?

Ah. I see now. That makes a difference.

Thanks.
by togFox
Thu Feb 08, 2024 12:39 pm
Forum: General
Topic: How do you code and deploy DLC's?
Replies: 10
Views: 4451

Re: How do you code and deploy DLC's?

Some thoughtful thinking there. Thanks! I didn't know itch can do tiers so I've learned something. I've coded file drop before and it is a very very simple feature that only needs one or two lines of code so that's a great idea. An unlocker exe with t.identity would give me a lot of control with min...
by togFox
Wed Feb 07, 2024 11:31 am
Forum: General
Topic: How do you code and deploy DLC's?
Replies: 10
Views: 4451

How do you code and deploy DLC's?

My target audience for my project is itch.io which lets customers download game files that need to be installed by the customer - in other words - it does not deploy or do any sort of local file management. It simple "serves" game files - usually zip files (developers decision). I'm thinki...
by togFox
Wed Feb 07, 2024 11:21 am
Forum: Libraries and Tools
Topic: Resolution Solution [library]
Replies: 57
Views: 89214

Re: Resolution Solution [library]

Some scenes were using RS and some scenes were using RS and scale. Making sure the rs.pop, rs.push. love.graphics.scale and origin is called in the right sequence and being disciplined in the scope fixes it. Thanks!
by togFox
Sun Feb 04, 2024 12:41 am
Forum: Libraries and Tools
Topic: Resolution Solution [library]
Replies: 57
Views: 89214

Re: Resolution Solution [library]

So, documenting here for others, my project is using:

Code: Select all

love.graphics.scale
and

Code: Select all

love.graphics.origin()
These things change the way things are drawn and if you're not careful, will interfere with RS.

Obviously.
by togFox
Fri Feb 02, 2024 12:57 am
Forum: Libraries and Tools
Topic: Resolution Solution [library]
Replies: 57
Views: 89214

Re: Resolution Solution [library]

Okay. Thanks. When I develop I use my monitor size so I'll use this code that should take my 1920x1080 and scale it to the users monitor size:

Code: Select all

	res.conf({game_width = 1920, game_height = 1080, scale_mode = 1})
	res.setMode(0, 0, {resizable=false})