Jump to content
Search Community

Search the Community

Showing results for tags 'stream'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • GreenSock Forums
    • GSAP
    • Banner Animation
    • Jobs & Freelance
  • Flash / ActionScript Archive
    • GSAP (Flash)
    • Loading (Flash)
    • TransformManager (Flash)

Product Groups

  • Club GreenSock
  • TransformManager
  • Supercharge

Categories

There are no results to display.


Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Personal Website


Twitter


CodePen


Company Website


Location


Interests

Found 1 result

  1. Hello ) I'm trying to create a stream of tweens with Timeline and I have very confused results. //init var bulletsTween:TimelineMax = new TimelineMax( { autoRemoveChildren:true, paused:true } ); //add tween to stream public function fire(mouseX:Number, mouseY:Number){ var bullet:GrenadeLauncherBullet = new GrenadeLauncherBullet(); if(bulletsTween.time() > 0){ bulletsTween.pause(); } //...some calculations here var bulletTween:TweenMax = new TweenMax(bullet, distance / GameSpace.HEIGHT + BULLET_TIME, { bezier: { autoRotate:false, curviness:0, values:[ { x:bezierPoint.x, y:bezierPoint.y }, { x:mouseX, y:mouseY } ] }, frame:19, onComplete:onBulletAnimComplete, onCompleteParams:[mouseX, mouseY, bullet], ease:Cubic.easeIn } ); bulletsTween.add(bulletTween, bulletsTween.time()); bulletsTween.play(bulletsTween.time()); } //pause stream public function pauseTweens():void { if (bulletsTween.time() > 0) { bulletsTween.pause(); } //...pause other tweens } //resume stream public function pauseTweens():void { if (bulletsTween.time() > 0) { bulletsTween.play(bulletsTween.time()); } //...pause other tweens } I tried a lot of combinations to organize the stream. This solution works, but it has unpredictable behavior. I can fire 7 bullets, pause it, then resume and all works fine. Another time I fire, for example, 3 bullets, make a little pause, then fire another one and first 3 bullets complete their animations immediately and fires onComplete event, but another time this event does not fire. In same situation once everything works ok, but the second time it crashes. If I delete the if statement here: if(bulletsTween.time() > 0){ bulletsTween.pause(); } and pause timeline if it is just createt and empty, then the first added tween to the timeline completes immediately without render and fires the onComplete event. After that other tweens works fine. This bug appears only for the first added tween to the timeline. If I use the resume() function it causes glitches that I have mention above. I use play with the concrete position, but it also causes the glitches. Some tweens dissapear from timeline, do not remove the tween target and do not fire the onComplete event. if (bulletsTween.time() > 0) { bulletsTween.play(bulletsTween.time()); } I think that I do not understand how to create a stream of tweens. Is there any pattern or sample to watch how to do it right?
×
×
  • Create New...