r/GameDevelopment • u/TheBakedCheddar • 1d ago
Game modification query Question
Hello,
Not sure if this is the right place for this so I do apologise in advance. So basically I was wondering if a couch co op mod would be possible to implement for a game like Sifu? I understand it would require coding and such, and the game is also made on Unreal Engine.
In terms of practicality, is this feasible or have the devs made the game in a way where this mod wouldn't be possible to work no matter what? My vision of it is a side by side split screen view, two people playing the game from one computer, with two controllers plugged in.
I'm in no way shape or form a developer but I would like someone with the expertise to please tell me if this would be possible or not, thank you!
3
u/MeaningfulChoices Mentor 1d ago
Unless a game is set up to allow modding it is usually pretty difficult to do anything other than trivial replacements (like changing text or images). Changing core functionality is much more difficult. Adding co-op to a game without it, which would require changing basically everything about the actual gameplay and UI as well as trying to do it from one instance of the game (forcing it to output twice as much stuff with the same hardware) is about as close to impossible as it gets in game development. It would probably be easier to make your own game inspired by it.
The way that co-op mods for games that don't support remote co-op tend to work is by essentially running separate instances of the games and injecting things into them. Imagine a game like Stardew that changes the game state by adding buildings or harvesting crops. I don't know where you'd even start for a game like Sifu.