Trying to get this to work for quite awhile now. I'm a complete newbie so go easy on me :
I've been following this [https://docs.godotengine.org/en/stable/getting_started/step_by_step/scripting_first_script.html](https://)
tutorial. Attached the script, when run there is no output. I've run Godot in verbose mode and seen no errors generated.
Version: Godot_v4.2.1-stable_mono_win64.
You may want to initially shield your eyes from the complex code that follows but hang in there.
`using Godot;
using System;
public partial class sprite_2d : Sprite2D
{
public void MySprite2D()
{
GD.Print("Hello, world!");
}
}`
I added the void otherwise it complained method must have a return type.
Am I doing something wrong?
Appreciate any help.