change: DebugOverlayDrawer.cs no longer needs a string and will accept an object
This commit is contained in:
@@ -138,7 +138,7 @@ namespace Reset.Core.Tools{
|
||||
}
|
||||
|
||||
// Publicly accessible method to change the value
|
||||
public static void ChangeValue(string pageName, string sourceName, string newValue){
|
||||
public static void ChangeValue(string pageName, string sourceName, object newValue){
|
||||
try {
|
||||
if (Instance.values.ContainsKey($"{pageName}/{sourceName}")) {
|
||||
Instance.values[$"{pageName}/{sourceName}"].text = newValue.ToString();
|
||||
|
||||
Reference in New Issue
Block a user