Back to project page Gallery97.
The source code is released under:
GNU General Public License
If you think the Android project Gallery97 listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package pl.kacprzak.klub97; //from www . j av a2 s. c om import android.util.Log; import com.badlogic.gdx.Game; import com.badlogic.gdx.assets.AssetManager; import com.badlogic.gdx.graphics.g3d.Model; import com.badlogic.gdx.graphics.g3d.ModelInstance; public class MieszkanieStart extends Game { public AssetManager manager = new AssetManager(); public Model model; public ModelInstance instance; public boolean isLoading = false; @Override public void create() { Log.e("my log", "Game created."); setScreen(new LoadingScreen(MieszkanieStart.this)); isLoading = true; manager.load("data/attempt.g3db", Model.class); } }