Questions tagged [tween]

Animation technique of frame interpolation between keyframes.

A tween could be understood as a synonym of animation. Given two keyframes with a number of properties a tween gives intermediate values per keyframe between the two keyframes. Usually this task is achieved by using specific libraries.

http://en.wikipedia.org/wiki/Inbetweening

624 questions
2
votes
1 answer

wxPython Animation - Tween Animation

I was wondering if it was possible to have tween animation in wxPython. I have tried looking at all the documentation but cannot seem to spot an reference to it. An example of what I am after would be having a button fly from the bottom of the…
user1145909
2
votes
1 answer

Eclipse dalvik Link of 'Tween Engine' class fails on android but works on desktop

i am creating a game using libGDX for android and desktop PCs. For transition screens, I am making use of Universal Tween engine. The desktop version runs perfectly but whenever I try running the android version, I get a Fatal Exception. The…
Ab5
  • 606
  • 9
  • 25
2
votes
1 answer

Libgdx tween not working on Android

I'm developing my first android game with libgdx, using as a base this amazing tutorial (http://www.kilobolt.com/day-11-supporting-iosandroid--splashscreen-menus-and-tweening.html). Everything works properly except for the tweening that I’m using in…
VictorMen
  • 21
  • 2
2
votes
2 answers

as3, flash fl tween transitions freezing

I have a bunch of different tweens going on in different movie clips but it seems that sometimes the tweens will freeze halfway through during my transitions. This guy is having the same problem and his question was answered but I'm not too sure…
Wade D Ouellet
  • 681
  • 3
  • 21
  • 36
2
votes
2 answers

Tween multiple filters Actionscript 3

I have a circular graphic that has 7 images on it. It needs to spin and stop on the next/previous image. It should spin through more than the 50deg required to get to the next/prev image so I added 360. This part works fine. But when I try to add…
ed209
  • 11,075
  • 19
  • 66
  • 82
2
votes
1 answer

How to append this SuperScrollorama tween timeline

I am trying to animate a gun with SuperScrollorama. The idea is that the gun will fire as the user scrolls down. This involves some rather complex tweening. Here's what I have so far (*works best in Firefox):…
2
votes
2 answers

KineticJS and Tween Timelines, integrating with GSAP JS

as of version 4.5.1 the old Transition class has been retired and "KineticJS recommends the GreenSock Animation Platform which integrates seamlessly". I am writing a canvas game using KineticJS which relied quite heavily on that old Transition class…
bamboo10
  • 133
  • 2
  • 14
2
votes
3 answers

Reference in callback function

I'm trying to pass an object through a callback function onUpdateTween( groups[i], this ); but it doesn't give me the correct object. It only gives me the last object from the groups array. How can I solve this? function transform( duration ) { …
busyBee
  • 533
  • 1
  • 5
  • 15
2
votes
2 answers

Tweening Image and then Text Greensock and JS animation

I am trying to tween an image and then have text come flying in afterwards. I have the image flying in already, but I can't seem to figure out how to make the text come in after the image is in...Also, I want to put a background to this entire div,…
2
votes
2 answers

Animation Sequence with as3

I am stuck at a point, where i want to do a sequence of animation being performed in Flash AS3. I am able to animate my movieclips with the TweenClass, but not able to make them play after one another in a sequence. I want to make the closeTween to…
Zasha
  • 56
  • 1
  • 13
2
votes
2 answers

Three.js tweened value doesn't arrive at target, instead completes but stays at initial value

I'm trying to use Tween in my WebGL project ( http://eyesonmars.com/ ) to move the to a new position smoothly. However, I haven't yet been able to get Tween to work for me. Instead of Tweening the value of the camera.position.x from -3 to -10 over…
benrobot
  • 21
  • 3
2
votes
3 answers

Tween a value in iPhone objective-C

Is it possible to tween a variable (let's say a float from 0.0 to 2.0 over a period of time) in objective-C? Something like what TweenMax would do in flash. I guess the class methods of UIView don't do that. Is it doable maybe with CoreAnimation? Or…
Dimitris
  • 13,480
  • 17
  • 74
  • 94
2
votes
0 answers

XCode: Looking for Tween & Morph Object solutions

I'm currently developing an iPhone app with Xcode. Part of the app requires the morph (or tween) of one shape into another shape. I know that using Adobe Flash Pro CS6 I can export a 'shape tween' to an iOS app using the built in AIR. The problem is…
Thurstan
  • 21
  • 1
2
votes
1 answer

AS3 - Collision detection using tween, frame gap

Here's the thing : I have a ball bouncing using Tweens, and I want to detect collisions between the ball and platforms (only when the ball is falling down). But, my solution is testing for collisions in an ENTER_FRAME loop, so when the ball speed is…
qbeauperin
  • 591
  • 4
  • 21
2
votes
1 answer

CreateJS: Unable to get tweening to work

So, I'm just starting to learn CreateJS and I encountered my first problem: I can't get tweening to work (as I expect it should work). Here is the example: http://www.hakoniemi.net/labs/createjs-test/ I want to get that cloud to move from right to…
Samuli Hakoniemi
  • 18,740
  • 1
  • 61
  • 74