Pre-Version commit - Changed small stuff

This commit is contained in:
TAASONI3
2023-11-25 21:07:06 +01:00
parent 18dfaf7602
commit 005c4e7e66
46 changed files with 3414 additions and 638 deletions

View File

@@ -116,8 +116,8 @@ public class AudioHandler : MonoBehaviour
string result = "";
float music = GameObject.Find("slideMusic").GetComponent<Slider>().value;
float effects = GameObject.Find("slideEffects").GetComponent<Slider>().value;
result = result + TextHandler.getText("music") + ":" + music + "\r\n";
result = result + TextHandler.getText("effects") + ":" + effects;
result = result + "Music:" + music + "\r\n";
result = result + "Effects:" + effects;
return result;
}
}

View File

@@ -52,7 +52,7 @@ public class TextHandler : MonoBehaviour
int.Parse(parts[i]);
result += parts[i] + " ";
}
catch(Exception ex){
catch(Exception){
if(parts[i].Contains("/")){
result += parts[i] + " ";
}