Search found 495 matches
- Mon Feb 24, 2025 8:10 pm
- Forum: Games and Creations
- Topic: Twitch Plays (Let twitch chat simulate input)
- Replies: 0
- Views: 3822
Twitch Plays (Let twitch chat simulate input)
Made a fairly simple little app with love2d that simulates keyboard input based on incoming chat messages from your twitch chat. Github: https://github.com/gagehenderson/Twitch-Plays-Love2d Example of it in action: https://www.twitch.tv/callgage/clip/InquisitiveResourcefulPoxTinyFace-BtP9uJkDy0aKD1Q...
- Mon Dec 02, 2024 4:58 pm
- Forum: Games and Creations
- Topic: Space Escape
- Replies: 7
- Views: 5119
Re: Space Escape
Congrats on the milestone! Looks interesting I'll have to give it a go this evening. I've managed to renege on my plan to release something on Steam for about the fourth year on the trot now but it's always inspiring seeing other people do it :) Do you have any ideas for your next project or just g...
- Mon Dec 02, 2024 3:43 pm
- Forum: Games and Creations
- Topic: Space Escape
- Replies: 7
- Views: 5119
Re: Space Escape
Congrats! Can you provide some up-to-date tips on Steam integration? Honestly I didn't really do any. I might add achievements at some point though. As far as publishing / deploying it - The technical side of it was kind of hard for me to grasp at first. The steamworks backend is not terrible, but ...
- Mon Dec 02, 2024 12:47 pm
- Forum: Games and Creations
- Topic: Space Escape
- Replies: 7
- Views: 5119
Space Escape
stAyftd2UUY Buy Now on Steam! ($2 for the next week!): https://store.steampowered.com/app/3349010/Space_Escape/ Description: Space Escape is a rogue-like arcade shoot-'em-up game where survival is the only mission. Forget peaceful space exploration—you're dodging obstacles and blasting alien ships ...
- Mon Feb 26, 2024 9:59 am
- Forum: Games and Creations
- Topic: [LOVEJAM 2024] Fortunes Favor - A Roguelike Strategy Game
- Replies: 0
- Views: 9049
[LOVEJAM 2024] Fortunes Favor - A Roguelike Strategy Game
Fortune's Favor Fortune's Favor is a medieval rogue-like strategy game. You must fight against an unrelenting, increasingly aggressive horde of enemies. Spend your gold to deploy your own soldiers and fight back - But choose when and how many to deploy carefully - You may wish you'd have saved that...
- Tue Jan 30, 2024 5:48 pm
- Forum: General
- Topic: Using love while learning c++
- Replies: 6
- Views: 3403
Re: Using love while learning c++
My advice is to pick a specific project that you would like to accomplish. It can be over-ambitious (game engine) or low-stakes (pong). It doesn't necessarily need to be achievable at first, it just needs to not be "learn c++". Your goal is "do <something> via c++". It's through...
- Tue Jan 30, 2024 5:38 pm
- Forum: General
- Topic: Using love while learning c++
- Replies: 6
- Views: 3403
Re: Using love while learning c++
Not saying that you shouldn't learn C++, only you can know what's important for you. But for you to consider learning C# instead. This would let you use Godot , Unity etc. And C# is much closer to C++ than Lua is, so you will be closing the distance in any case. For sure - My main goal is to learn ...
- Tue Jan 30, 2024 1:06 am
- Forum: General
- Topic: Using love while learning c++
- Replies: 6
- Views: 3403
Using love while learning c++
I want to start learning c++ after my current project. I've only ever used high-level dynamic programming languages - And am entirely self-taught (save for a lot of awesome people on this forum helping me!) so please excuse how stupid some of my post might sound :| I was wondering if it's possible/n...
- Wed Aug 16, 2023 12:52 am
- Forum: Libraries and Tools
- Topic: GOOP - OOP Library
- Replies: 0
- Views: 30110
GOOP - OOP Library
This is my first time ever sharing some source and making a library, so if anyone has any feedback it would be very appreciated. Just please be nice :') GOOP Gage's Object Oriented Programming An OOP library for lua that enables all of the oop features you'd want - Along with optional type checked a...
- Wed May 24, 2023 7:36 pm
- Forum: Support and Development
- Topic: Get the dimensions of the overlapping section of two rectangles
- Replies: 2
- Views: 1617
Re: Get the dimensions of the overlapping section of two rectangles
If you are sure, the rectangles overlap, you can find it this way. Imagine some situation: +--------------+ | | | +--------+ | | | | | | | | | +--|--------|--+ | | +--------+ Now we can see, that if we want to get x of overlap, it is math.max(x1, x2) where x1 and x2 are x positions of two rectangle...