Playmaker Forum

PlayMaker Help & Tips => PlayMaker Help => Topic started by: Graham on January 19, 2014, 08:55:28 PM

Title: Smooth Look At [SOLVED]
Post by: Graham on January 19, 2014, 08:55:28 PM
Would it be possible to apply the "constraint locally" modification Jean did to the "Look At" action in this thread: http://hutonggames.com/playmakerforum/index.php?topic=4908.0 (http://hutonggames.com/playmakerforum/index.php?topic=4908.0) But add it to the "Smooth Look At Direction" action instead?

Thanks!
Title: Re: Smooth Look At
Post by: Graham on January 19, 2014, 11:16:35 PM
Nevermind, I made a work around by changing the action from:

         if (keepVertical.Value)
         {
            diff.y = 0;
         }

TO

         if (keepVertical.Value)
         {
            diff.z = 0;
         }