Skip to content

Commit

Permalink
#1.2.0-rc3
Browse files Browse the repository at this point in the history
  • Loading branch information
BelicusBr committed Jan 1, 2024
1 parent 141edee commit a89ea3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GodotEngine.Utility/GDDirectory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ public sealed class GDDirectory : GDFileBase {
private GDFileBase[] subDir = Array.Empty<GDFileBase>();

public override string Path { get; protected set; }
public override string NameWithoutExtension => Name;
public override string Name => SYSPath.GetFileName(Path);
public int Count => ArrayManipulation.ArrayLength(subDir);
public override GDFileBase Parent { get; protected set; }
public override GDFileAttributes Attribute { get; protected set; }
public override string NameWithoutExtension => SYSPath.GetFileNameWithoutExtension(Path);

internal GDDirectory(GDFileBase parent, string path, GDFileAttributes attributes) {
Path = path;
Expand Down

0 comments on commit a89ea3d

Please sign in to comment.