Skip to content

Commit db2d5dc

Browse files
committed
A couple performance tweaks
1 parent 0e662c2 commit db2d5dc

File tree

2 files changed

+20
-9
lines changed

2 files changed

+20
-9
lines changed

Singleton.cs

+8-7
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ public static T Instance
2525
{
2626
if (Quitting)
2727
{
28-
Debug.LogWarning($"[{nameof(Singleton)}<{typeof(T)}>] Instance will not be returned because the application is quitting.");
2928
// ReSharper disable once AssignNullToNotNullAttribute
3029
return null;
3130
}
@@ -37,17 +36,19 @@ public static T Instance
3736
var count = instances.Length;
3837
if (count > 0)
3938
{
40-
if (count == 1)
39+
if (count == 1) {
4140
return _instance = instances[0];
42-
Debug.LogWarning($"[{nameof(Singleton)}<{typeof(T)}>] There should never be more than one {nameof(Singleton)} of type {typeof(T)} in the scene, but {count} were found. The first instance found will be used, and all others will be destroyed.");
43-
for (var i = 1; i < instances.Length; i++)
41+
}
42+
43+
44+
for (var i = 1; i < instances.Length; i++) {
4445
Destroy(instances[i]);
46+
}
47+
4548
return _instance = instances[0];
4649
}
4750

48-
Debug.Log($"[{nameof(Singleton)}<{typeof(T)}>] An instance is needed in the scene and no existing instances were found, so a new instance will be created.");
49-
return _instance = new GameObject($"({nameof(Singleton)}){typeof(T)}")
50-
.AddComponent<T>();
51+
return _instance = new GameObject($"({nameof(Singleton)}){typeof(T)}").AddComponent<T>();
5152
}
5253
}
5354
}

Sound/SoundEffect.cs

+12-2
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,20 @@ public void PlayOnObject(GameObject gameObject) {
6969

7070
}
7171

72+
private SoundEffectController _soundEffectController;
73+
private SoundEffectController soundEffectController {
74+
get {
75+
if (_soundEffectController != null) {
76+
return _soundEffectController;
77+
}
78+
79+
return _soundEffectController = FindObjectOfType<SoundEffectController>();
80+
}
81+
}
82+
7283
[UsedImplicitly]
7384
public void Play() {
74-
AsyncObjectFinder.Instance.FindObjectOfTypeAsync<SoundEffectController>()
75-
.Then(controller => PlayOnObject(controller.gameObject));
85+
PlayOnObject(soundEffectController.gameObject);
7686
}
7787

7888
protected void PlayOneShotOnAudioSource(AudioSource source) {

0 commit comments

Comments
 (0)