Package org.terasology.audio.openAL.staticSound

Examples of org.terasology.audio.openAL.staticSound.OpenALSound


    @Override
    public AssetFactory<StaticSoundData, StaticSound> getStaticSoundFactory() {
        return new AssetFactory<StaticSoundData, StaticSound>() {
            @Override
            public StaticSound buildAsset(AssetUri uri, StaticSoundData data) {
                return new OpenALSound(uri, data, OpenALManager.this);
            }
        };
    }
View Full Code Here

TOP

Related Classes of org.terasology.audio.openAL.staticSound.OpenALSound

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.