Waypoints example or video

CaptFinnCaptFinn Member Posts: 1,828
edited November -1 in Working with GS (Mac)
IM looking for a cookbook video or something that will show me the process of setting up a actor to go from point a to point b to point c back to point a. SOmething along those lines. I know its interpolating. but i cant find a video in that regard.

Comments

  • RedlerTechRedlerTech Member Posts: 1,583
    Hey Jeff,
    Just create 6 real attributes
    -AX
    -AY
    -BX
    -BY
    -CX
    -CY

    Create Actors A,B, & C & place them as you wish

    In actor A change attribute AX to self position x & AY to self position y. Same with B&C

    Go in your player actor & say interpolate self.position.x & y to AX&AY
    Rule:
    ALL
    When self.position.X = AX
    When Self.position.Y = AY

    Interpolate self.position.x to BX&BY

    Rule:
    ALL
    When self.position.X = BX
    When Self.position.Y = BY

    interpolate self.position.x to CX&CY

    Rule:
    ALL
    When self.position.X = CX
    When Self.position.Y = CY

    interpolate self position x to AX & AY

    _________________________________________________
    Full Game Creation Service
    1 On 1 Project Help
    1 on 1 GameSalad Tutoring
  • olster1olster1 Member Posts: 396
    Do you want it to be an automatic thing. So it all moves by itself continually or is this a game mechanic where the user inputs various waypoints?

    If it's the first then just use a simple interpolate to X1 and Y1 when self.possitionX =X1 and self.possitionY =Y1 interpolate self.positionX and self.possitionY to X2 Y2..... so on so on

    My info may be useless and if so type in "waypoints" into the GS creator. Two very nice user input waypoint examples there :)

    As for a video... couldn't find any :/
  • DreamLabDreamLab Member Posts: 2,127
    Search in the creator for the free waypoints demo by ORBZ.
Sign In or Register to comment.