美文网首页
用Material贴图

用Material贴图

作者: 程树欣 | 来源:发表于2017-01-23 15:49 被阅读41次

    ModelInstance instance;
    Texture texture = new Texture(Gdx.files.internal("abc.jpg"));
    Material material = new Material();
    material.set(TextureAttribute.createDiffuse(texture));

    Material mat = instance.materials.get(0);//获取预定义的Material
    mat.clear();
    mat.set(material);//设置新的Material

    相关文章

      网友评论

          本文标题:用Material贴图

          本文链接:https://www.haomeiwen.com/subject/rqpabttx.html