Back to project page RubeLoader.
The source code is released under:
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUC...
If you think the Android project RubeLoader listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.gushikustudios.rube.loader.serializers.utils; //ww w . j a v a 2 s . c o m import com.badlogic.gdx.graphics.Color; import com.badlogic.gdx.math.Vector2; import com.badlogic.gdx.physics.box2d.Body; public class RubeImage { public float angleInRads = 0.0f; public Body body = null; public final Vector2 center = new Vector2(); public final Color color = new Color(); public String file = null; public int filter; public String name = null; public float opacity = 1.0f; public int renderOrder = 0; public float scale = 1.0f; public float width = 0.0f; public float height = 0.0f; public boolean flip = false; }