Game Development

android – Unity Audio performs with 5-10 second delay

I’ve wished to make one thing like a rhythm sport for Android in Unity, and for that I wanted to jot down an audio supervisor to play my songs and sound results in-game. I’ve adopted Brackeys’ tutorial for that, and it labored wonderful for me, even with sounds as much as 5 minutes lengthy.

Now I’ve constructed the sport for Android, but when I press a button to play this music, it doesn’t work in any respect any extra. Typically the construct simply crashes, generally nothing occurs, and more often than not the entire app freezes for about 5 to 10 seconds, after which the sound performs.

Additionally, in a Home windows construct this doesn’t occur, and in-editor it really works completely wonderful as effectively.

I’ve tried setting the audio to Finest Latency, I’ve reimported all property a number of instances, and nothing labored.

Any assist is very appreciated as a result of that is my first challenge!
( Additionally I am not so good in English so sorry for that 🙂 )

Replace:

LevelManager.cs

utilizing UnityEngine;
utilizing System;
public class LevelManager : MonoBehaviour
{
    public Stage[] ranges;
    
    void Awake()
    {
        foreach (Stage s in ranges)
        {
            s.supply = gameObject.AddComponent<AudioSource>();
            s.supply.clip = s.clip;
            s.size = s.clip.size;
        }
    }

    public void Play(string title)
    {
        Stage s = Array.Discover(ranges, sound => sound.title == title);
        if (s == null)
        {
            Debug.LogWarning("Sound: " +  title + " not discovered!");
            return;
        }
        s.supply.Play();
    }
}

Stage Class

utilizing UnityEngine;

[System.Serializable]
public class Stage
{
    [Header("General")]
    public string title;
    [HideInInspector] public float size;
    
    [Header("Audio")]
    public AudioClip clip;
    [HideInInspector] public AudioSource supply;
}

This is the Level class in inspector

About the author

Theme control panel

Leave a Comment