OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:unitScale
(Results
1 - 2
of
2
) sorted by null
/external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/renderers/
BatchTiledMapRenderer.java
63
protected float
unitScale
;
83
return
unitScale
;
98
public BatchTiledMapRenderer (TiledMap map, float
unitScale
) {
100
this.
unitScale
=
unitScale
;
110
public BatchTiledMapRenderer (TiledMap map, float
unitScale
, Batch batch) {
112
this.
unitScale
=
unitScale
;
197
final float x1 = x *
unitScale
;
198
final float y1 = y *
unitScale
;
[
all
...]
OrthoCachedTiledMapRenderer.java
58
protected float
unitScale
;
74
public OrthoCachedTiledMapRenderer (TiledMap map, float
unitScale
) {
75
this(map,
unitScale
, 2000);
79
public OrthoCachedTiledMapRenderer (TiledMap map, float
unitScale
, int cacheSize) {
81
this.
unitScale
=
unitScale
;
88
float width = camera.viewportWidth * camera.zoom + maxTileWidth * 2 *
unitScale
;
89
float height = camera.viewportHeight * camera.zoom + maxTileHeight * 2 *
unitScale
;
102
x -= maxTileWidth *
unitScale
;
103
y -= maxTileHeight *
unitScale
;
[
all
...]
Completed in 1911 milliseconds