C#: Rename Object to GodotObject

This commit is contained in:
Raul Santos
2022-12-07 16:16:51 +01:00
parent a968e51414
commit 1aceacaa6b
38 changed files with 147 additions and 145 deletions
@@ -7,7 +7,7 @@ using System;
[Tool]
public partial class _CLASS_ : _BASE_
{
public override Godot.Object _PostImport(Node scene)
public override GodotObject _PostImport(Node scene)
{
// Modify the contents of the scene upon import.
return scene; // Return the modified root node when you're done.
@@ -7,7 +7,7 @@ using System;
[Tool]
public partial class _CLASS_ : _BASE_
{
public override Godot.Object _PostImport(Node scene)
public override GodotObject _PostImport(Node scene)
{
return scene;
}