Libgdx Tiled Map不透明
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Libgdx Tiled Map不透明相关的知识,希望对你有一定的参考价值。
我不知道为什么,但我的libgdx对于两层不透明。你可能会在设计师和我的游戏中看到。那些草被添加到不同的层中。在设计师中它是透明的,而在我的游戏中,它在那里显示灰色部分。为什么? : - /
我在create()中添加了这个
TiledMap map = new TmxMapLoader().load("stage.tmx");
OrthoCachedTiledMapRenderer maprender = new OrthoCachedTiledMapRenderer(map);
这在render()中
maprender.render();
答案
试试set blending为true:
mapenderer.setBlending(true);
以上是关于Libgdx Tiled Map不透明的主要内容,如果未能解决你的问题,请参考以下文章
开源java游戏框架libgdx专题-13-开发工具-地图的使用