Example usage for com.badlogic.gdx.graphics.g3d.md2 MD2Loader MD2Loader

List of usage examples for com.badlogic.gdx.graphics.g3d.md2 MD2Loader MD2Loader

Introduction

In this page you can find the example usage for com.badlogic.gdx.graphics.g3d.md2 MD2Loader MD2Loader.

Prototype

MD2Loader

Source Link

Usage

From source file:com.badlogic.gdx.graphics.g3d.test.MD2Viewer.java

@Override
public void create() {
    model = new MD2Loader().load(Gdx.files.internal("data/knight.md2").read());
    texture = new Texture(Gdx.files.internal("data/knight.jpg"));
    cam = new PerspectiveCamera(67, Gdx.graphics.getWidth(), Gdx.graphics.getHeight());
    cam.far = 300;/*from   w w w  .j  a v  a2  s . c  o  m*/
    cam.position.set(0, 12, 50);
}