• Hello,

    Can I 'tween' a layer ?
    I want it to slide into my window from left to right.

    This doesn't work.. (but it does with a plugin)


    UPDATE : I had to change

    Code
    <action name="tweensublimo1">
    	tween(plugin[introimage].x, 30, 1.4, easeOutQuad);
    	</action>


    into

    Code
    <action name="tweensublimo1">
    	tween(player[part1].x, 30, 1.4, easeOutQuad);
    	</action>
  • you adressed the wrong layer-name!

    Change
    <action name="tweensublimo1">
    tween(plugin[introimage].x, 30, 1.4, easeOutQuad);
    </action>
    into
    <action name="tweensublimo1">
    tween(layer[part1].x, 30, 1.4, easeOutQuad);
    </action>

    Best,
    Steve

Jetzt mitmachen!

Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!