OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getFloatAttribute
(Results
1 - 2
of
2
) sorted by null
/external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/
BaseTmxMapLoader.java
175
float x = element.
getFloatAttribute
("x", 0) * scaleX;
176
float y = (flipY ? (mapHeightInPixels - element.
getFloatAttribute
("y", 0)) : element.
getFloatAttribute
("y", 0)) * scaleY;
178
float width = element.
getFloatAttribute
("width", 0) * scaleX;
179
float height = element.
getFloatAttribute
("height", 0) * scaleY;
222
float objectWidth = element.
getFloatAttribute
("width", textureRegion.getRegionWidth());
223
float objectHeight = element.
getFloatAttribute
("height", textureRegion.getRegionHeight());
226
tiledMapTileMapObject.setRotation(element.
getFloatAttribute
("rotation", 0));
/external/libgdx/gdx/src/com/badlogic/gdx/utils/
XmlReader.java
627
public float
getFloatAttribute
(String name) {
631
public float
getFloatAttribute
(String name, float defaultValue) {
Completed in 1661 milliseconds