Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7643821
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T09:32:26+00:00 2026-05-31T09:32:26+00:00

I am developing a game and implemented pathfinding algorithm. My pathfinding returns me a

  • 0

I am developing a game and implemented pathfinding algorithm. My pathfinding returns me a array of nodes which character has to move through to reach the destination. Basically I need to tween node by node so I use TimelineLite and add all the tween to the sequence. It works.

HOWEVER,

There are delays when tweenning between nodes (character moves, then stop, then moves again…) which I couldn’t figure out the reason. How can I solve it?

Here is the code:

    public function walk(startNode:Node,destinationNode:Node):void{
//retrieve the path of the character
            var path:Array = Pathfinder.findPath(startNode,destinationNode,GenericMap.findConnectedNodes);
            currentPath=path;
            if(path!=null){
                var pastX:Number;
                var pastY:Number;
                for(var index:int=0;index<path.length;index++)
                {
                    var currentNode:Node = path[index] as Node;
                    testMoveThroughNodes(currentNode.x,currentNode.y);
                }
            }
        }
        private var speed:Number = 0.7;
        private var timeline:TimelineLite = new TimelineLite();
        /** tween the sprite through nodes of path*/

        private function testMoveThroughNodes(targetX:Number,targetY:Number):void{
            timeline.append(new TweenLite(monster,speed,{x:targetX,y:targetY}));
        }

I able to tween through each node sequencing TweenLite, however it moves and stop and moves, look totally unnatural.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T09:32:27+00:00Added an answer on May 31, 2026 at 9:32 am

    Yeah, tough to say without seeing any code, but I wonder if it’s just an easing issue that makes it LOOK like things are stopping briefly even though they’re not. Remember, the default ease is Quad.easeOut, so movement slows towards the end of each tween (for a more natural “feel”). You can use Linear.easeNone if you want linear movement.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am developing a game with dozens of levels and each level has a
I am developing game editor in c++.I have implemented reflection mechanism using DiaSDK.Now I
I'm talking about ROOT's CINT . I've been developing a game in c++ which
I have been developing a simple game for iOS which involves dragging and using
I am developing an android game application,I have implemented all the screens.Now i want
While developing a game I have designed a class that in normal operation has
I am developing a game in which I am using Landscape mode I have
I am developing an android application game in which I have to implement swipe.
I am developing a Net game, in general: I have a server which launch
I am currently developing a game for the iphone in which many images will

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.