Hi,
i have a Player that moves with tween:
set_process(false)
$Tween.interpolate_property(self, "position", self.position, target_position,0.15, Tween.TRANS_LINEAR, Tween.EASE_IN)
$Tween.start()
yield($Tween, "tween_completed")
set_process(true)
The Camera is a child of Player. When i have "Project Settings, General, Display, Window, Use Vsync = ON" the movement and scrolling is totally choppy and stuttering. The fps are steady at 60.
When i have "Use Vsync = OFF" the scrolling is totally smooth and perfect. The fps are 2500+.
Any idea why the scrolling at 60 fps is messed up?
I use Godot 3.2 Stable. It is a very tiny project as i am just starting. No game logic at all. Just a TileMap and a player moving.