playMaker

Author Topic: I have a problem with the "smooth follow action" action  (Read 1047 times)

ob1knb

  • Playmaker Newbie
  • *
  • Posts: 11
I have a problem with the "smooth follow action" action
« on: July 12, 2019, 12:47:09 AM »
Hi
I am trying to make a game very similar to this one https://bit.ly/2xLxGbW
using playmaker and I get annoying camera stuttering and jitter when using the "smooth follow action"

please help

hoyoyo80

  • Full Member
  • ***
  • Posts: 136
Re: I have a problem with the "smooth follow action" action
« Reply #1 on: July 12, 2019, 01:51:30 AM »
Hi.. I recommend use cinemachine. SAve a lotof times.

jeanfabre

  • Administrator
  • Hero Member
  • *****
  • Posts: 15500
  • Official Playmaker Support
Re: I have a problem with the "smooth follow action" action
« Reply #2 on: July 12, 2019, 03:08:48 AM »
Hi,

 yes cinemachine is amazing.

 for jittering, it's almost always because the camera is not moving during lateupdate, so make sure all your actions that control the camera one way or the other are executing on late update. You know that either because it exposes explicitly this option ( everyframe, lateupdate), or check in the code that there is a LateUpdate Method. Else ask us if such and such action runs on late update and we'll tell you.

Bye,

 Jean