Hello, I'm wondering if there's a way to turn on typing hints/suggestions like seen in this video
I am stuck at this very part of the video where I am trying to do exactly what he is doing but in C# for my project. I'm not actually following this tutorial, just using snippets to learn from.
So I'm trying to edit a tween via this code:
int moveTweenValue(int target){
var moveTween = GetNode<Tween>("moveTween");
moveTween.InterpolateProperty(moveTween,"position",Position,target,2,15,Tween.EASE_OUT);
return target;
}
But I get the error "StartUI.cs(33,83): 'Tween' does not contain a definition for 'EASE_OUT'"
Ideally I would have Godot hints simply tell me what definitions there are to choose from since the names seem to be different in C#.
Please note that type hints are automatically on in regular Godot, but not Mono.