Skip to content

[π—¨π—»π—Άπ˜π˜† π—¨π˜π—Άπ—Ήπ—Άπ˜π˜†] - Make cheats' toggle easier

License

Notifications You must be signed in to change notification settings

Theo-Farnole/CheatsManager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

29 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Unity Cheats Manager

Make creation of cheats in Unity easier.

Getting Started

A new cheats

Go in Project Settings > Cheats.

Edit cheat

Window dropdown > CheatsEditor Tick or untick Cheats.

Get cheat in game

CheatsManager.GetBool("myCheatKey");

Set cheat in game

CheatsManager.SetBool("myCheatKey", true);

What if cheat changed in game ?

void OnEnable()
{
	CheatsManager.OnCheatChanged += CheatsManager_OnCheatUpdated;
}

void CheatsManager_OnCheatUpdated(string key, CheatType)
{
	// Extra work...
}

Author

License

This project is licensed under the MIT License - see the LICENSE.md file for details

About

[π—¨π—»π—Άπ˜π˜† π—¨π˜π—Άπ—Ήπ—Άπ˜π˜†] - Make cheats' toggle easier

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages