![]() |
Attention | Topic was automatically imported from the old Question2Answer platform. |
![]() |
Asked By | freeve4h |
i just started using godot for the first time, but when i made the first .cs file for my first game, it game me an error: Failed to build project solution
code:
using Godot;
using System;
public class Player : Spatial {
public override void _Ready() {
GD.Print("Hello from " + Name)
}
}