AudioClip



  • HI

    ich brüchte mal schnell Hilfe. Also mein Problem ist das ich nicht alle AudioClip in den Array abspielen kann. Als ob es eine begrenzung für AudioClips gebe.
    HTML_HMSound ist immer == 10

    public void ReadSoundData()
    {
        this.AC_Quest   = new AudioClip[HTML_HMSound];
        this.AC_Ant1    = new AudioClip[HTML_HMSound];
        this.AC_Ant2    = new AudioClip[HTML_HMSound];
        this.AC_Ant3    = new AudioClip[HTML_HMSound];
        this.AC_Error1  = new AudioClip[HTML_HMSound];
        this.AC_Error2  = new AudioClip[HTML_HMSound];
        this.AC_Error3  = new AudioClip[HTML_HMSound];
    
        try
        {
            URL url;
            for(int i = 0; i < HTML_HMSound; i++)
            {
                  url = new URL(getCodeBase() + "sound//"+i+".0.wav");
                this.AC_Quest[i] = this.getAudioClip(url);
    
                url = new URL(getCodeBase() + "sound//"+i+".1.wav");
                this.AC_Ant1[i] = this.getAudioClip(url);
    
                url = new URL(getCodeBase() + "sound//"+i+".2.wav");
                this.AC_Ant2[i] = this.getAudioClip(url);
    
                url = new URL(getCodeBase() + "sound//"+i+".3.wav");
                this.AC_Ant3[i] = this.getAudioClip(url);
    
                url = new URL(getCodeBase() + "sound//"+i+".4.wav");
                this.AC_Error1[i] = this.getAudioClip(url);
    
                url = new URL(getCodeBase() + "sound//"+i+".5.wav");
                this.AC_Error2[i] = this.getAudioClip(url);
    
                url = new URL(getCodeBase() + "sound//"+i+".6.wav");
                this.AC_Error3[i] = this.getAudioClip(url);
            }
        }
        catch(MalformedURLException e)
        {
        }   
    }
    

    hat jemand einen Löschungsvorschlag?????

    thx schon mal im voraus



  • Bist Du sicher dass dein Verzeichnis sound// heisst?
    nicht vielleicht sound\\ ??



  • ist glaube ich egal weil ich kann mir ja ein paar von den Sound anhören aber halt nicht alle. Das ist ja mein Problem.



  • Sind denn alle URLs im Array drin? Gib doch die Liste da mal aus.


Anmelden zum Antworten