com.codeandweb.physicseditor.MetadataNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gdx-pe-loader Show documentation
Show all versions of gdx-pe-loader Show documentation
LibGDX PhysicsEditor XML loader
The newest version!
package com.codeandweb.physicseditor;
import com.badlogic.gdx.utils.XmlReader;
class MetadataNode {
final int format;
final float ptmRatio;
MetadataNode(XmlReader.Element data)
{
format = data.getInt("format");
ptmRatio = data.getFloat("ptm_ratio");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy