Questions tagged [harmony]
17 questions
-1
votes
0 answers
I dont understand how to patch same name methods with harmony
I have two methods with same names
public static List GetPlayers()
{
return GetPlayers();
}
public static List GetPlayers() where T : IPlayer
{
if (!FactoryManager.FactoryTypes.TryGetValue(typeof(T), out var value))
…

ART0022VI
- 63
- 4
-1
votes
2 answers
Unity Application Memory Leak - How can you profile without access to the source code or a debug target?
Bit of an unusual setup here,
I'm creating mods for the video game RUST
It uses HARMONY to load mods into the server code
At some point I did something to cause a memory leak, the application grows from 10GB in memory to 30GB over the course of a…

ThompsonCodes
- 35
- 1
- 9