HiIAmMoot  
                
                  
                    January 4, 2017,  2:03pm
                   
                  1 
               
             
            
              So I’m using the Project World Location to Widget Position to get arrows over my players’ heads. The positioning is good, but it’s too jittery.
https://puu.sh/taRGe/2602e7ab1f.gif 
Any idea what might cause this? Or is there something I’m missing? All I’m doing is get actor, create widget(unless widget already exist) and set position in viewport.
             
            
              
            
           
          
            
              
                HiIAmMoot  
                
                  
                    January 4, 2017,  8:34pm
                   
                  2 
               
             
            
              I’ve managed to fix it by setting my tick to TG_PostUpdateWork.
Thanks to this thread.
  
  
    
  This would be the same as Unity's 'Update' and 'LateUpdate' functions.   Basically if I can't do this I'm forced to split functionality across multiple objects which adds to clutter, difficulty to follow code, and break the tenets of Code Complete.  ...