
R.E.P.O.
You are viewing a potentially older version of this package. View Latest Version

Edit mod configs in-game!
In order for your ConfigEntry to be listed under your mod, it must meet this criteria:
bool, int, or floatIf you've referenced an older version of this mod, the attribute is currently obselete and won't do anything.
The proper way to set up ranges can be done by using AcceptableValueRange when defining your config entry:
floatEntry = Config.Bind("General", "Float Entry", 2f, new ConfigDescription(null, new AcceptableValueRange<float>(2.5f, 10.5f)));
intEntry = Config.Bind("General", "Int Entry", 2, new ConfigDescription(null, new AcceptableValueRange<int>(0, 100)));