Package org.terasology.audio

Examples of org.terasology.audio.StreamingSound


        @Override
        public void onInitialize() {
            AssetUri uri = getNode().music;
            if (uri != null) {
                StreamingSound asset = assetManager.loadAsset(uri, StreamingSound.class);
                if (asset != null) {
                    audioManager.playMusic(asset, this);
                    playing = true;
                }
            }
View Full Code Here

TOP

Related Classes of org.terasology.audio.StreamingSound

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.