Package org.terasology.audio.openAL.streamingSound

Examples of org.terasology.audio.openAL.streamingSound.OpenALStreamingSoundPool


        AL10.alDistanceModel(AL10.AL_INVERSE_DISTANCE_CLAMPED);

        // Initialize sound pools
        pools.put("sfx", new OpenALSoundPool(30)); // effects pool
        pools.put("music", new OpenALStreamingSoundPool(2)); // music pool
        pools.get("sfx").setVolume(config.getSoundVolume());
        pools.get("music").setVolume(config.getMusicVolume());
    }
View Full Code Here

TOP

Related Classes of org.terasology.audio.openAL.streamingSound.OpenALStreamingSoundPool

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.