Login / Registrieren
DE EN FR ES IT CZ
Zurück Nach oben

Move/Tween Display Object Text

  • #1, by dionous 8 years ago Zitieren
    Hi all,

    Anyone knows if it is possible to move/tween a display object text from one position to another?
  • #2, by SimonS 8 years ago Zitieren
    Yep, possible:

    for i=1,ActiveTexts.__len do
    
      if ActiveTexts[i].Owner == Objects.Objekt0 then 
        ActiveTexts[i]:to(1000,{Position={x=500,y=500}},easeQuadInOut)
    
      end
    
    end
  • #3, by dionous 8 years ago Zitieren
    works great, thanks!