Search found 774 matches

by togFox
Tue Mar 19, 2024 2:38 am
Forum: Games and Creations
Topic: 3D Physics Engine
Replies: 11
Views: 2729

Re: 3D Physics Engine

I'm thinking either 1st person or 3rd person RPG dungeon crawler with this physics engine for combat and world movement.
by togFox
Mon Mar 18, 2024 9:43 am
Forum: Games and Creations
Topic: 3D Physics Engine
Replies: 11
Views: 2729

Re: 3D Physics Engine

I know I want to use this in a future project - I just can't think what for at the moment! :)
by togFox
Sat Mar 16, 2024 12:44 pm
Forum: Games and Creations
Topic: Backyard gridiron manager released
Replies: 3
Views: 1845

Re: Backyard gridiron manager released

Finally introduced passing, meaning they can throw the ball to the receiver. QB's can now run the ball or pass the ball. This makes for a very dynamic game and brings an "it's not over till it's over" feeling. About 4 weeks after the initial release this game is quickly approaching "f...
by togFox
Fri Mar 15, 2024 10:09 pm
Forum: Support and Development
Topic: Requesting help
Replies: 1
Views: 687

Re: Requesting help

If you wrap the above in code tags and then paste row 36 here then we can see if we can get you sorted.
by togFox
Fri Mar 15, 2024 7:09 am
Forum: Support and Development
Topic: Overlapping sensors - Box2D order / behavior
Replies: 8
Views: 1177

Re: Overlapping sensors - Box2D order / behavior

My current project (see signature) uses box2d. Some of that code might be useful - or simply confusing.
by togFox
Thu Mar 14, 2024 9:30 pm
Forum: Support and Development
Topic: Overlapping sensors - Box2D order / behavior
Replies: 8
Views: 1177

Re: Overlapping sensors - Box2D order / behavior

This might help. It checks which fixtures are colliding right now.

Code: Select all

local allcontacts = world:getContacts( )
	for k, contact in pairs(allcontacts) do
		if contact:isTouching() then
			local fixtureA, fixtureB = contact:getFixtures( )

by togFox
Fri Mar 08, 2024 3:05 pm
Forum: Games and Creations
Topic: Backyard gridiron manager released
Replies: 3
Views: 1845

Re: Backyard gridiron manager released

Love file is now available for LOVEly ppl.

https://togfox.itch.io/backyard-gridiron-manager

Available on itch.io only as itch provides download/user stats this forum does not.
by togFox
Thu Mar 07, 2024 8:20 am
Forum: Support and Development
Topic: A tool like Aseprite but for hd sprites?
Replies: 2
Views: 784

Re: A tool like Aseprite but for hd sprites?

I use Krita extensively and it has a small learning curve. Try this:

https://www.piskelapp.com/
by togFox
Sun Mar 03, 2024 10:18 am
Forum: Support and Development
Topic: Can a non-Windows peep test my love file?
Replies: 8
Views: 1528

Can a non-Windows peep test my love file?

So I don't have Linux or Mac - (edit: and know nothing about them and don't want to VM/emulate them) but I am keen to make my LOVE file available to this audience. I'm hoping a kind soul can d/l the love file and follow the flow I've captured in screenshots. It's all about read/write operations and ...
by togFox
Wed Feb 28, 2024 8:54 pm
Forum: General
Topic: How do you code and deploy DLC's?
Replies: 10
Views: 2674

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

All good. I appreciate the help. You are right with the above. I decided I want to avoid the paid and donation option completely as even 0 or more feels like a guilt trip and will deter some ppl from trying the demo so using the advice in this thread I went the linked way to maximise downloads even ...