<?xml version="1.0" encoding="utf-8"?>
<Screen name="ActionTest" descriptors="xworker.libgdx.Screen">
    <Resources>
        <FileResource name="texture" type="texture" file="data\badlogic.jpg">
            <AssetLoaderParameters>
                <TextureParameter magFilter="Linear" minFilter="Linear"></TextureParameter>
            </AssetLoaderParameters>
        </FileResource>
    </Resources>
    <Stages>
        <Stage name="stage" constructor="default">
            <Image name="img" constructor="texture" texture="texture" width="100" height="100" originX="50" originY="50" positionX="100" positionY="100">
                <Actions>
                    <MoveByAction name="moveBy" amountX="100" amountY="0" duration="2"></MoveByAction>
                    <AfterAction name="after">
                        <ScaleToAction scale="2" x="2" y="2"></ScaleToAction>
                    </AfterAction>
                </Actions>
            </Image>
        </Stage>
    </Stages>
</Screen>