Skip to content

Latest commit

 

History

History
47 lines (41 loc) · 862 Bytes

README.md

File metadata and controls

47 lines (41 loc) · 862 Bytes

Array Extends


Some extra methods for GodotArray(C#)

Note

using Godot.CollectionsExtens.Array; x Godot Array

using Godot.CollectionsExtens.List; x C# List

Methods:

  • Assign
  • Back
  • Front
  • PopAt
  • PushFront
  • PushBack
  • PopFront
  • PopBack

Alias Methods.

Note

using Godot.CollectionsExtens.Array.Alias; x Godot Array

using Godot.CollectionsExtens.List.Alias; x C# List

Tip

using if you need to convert gdscript code to C# quickly.

  • AppendArray(AddRange)
  • Erase(Remove)
  • Filter(Where)
  • Find(IndexOf)
  • Has(Contains)
  • Hash(GD.Hash)
  • IsEmpty
  • Map(Select)
  • Reduce(Aggregate)
  • RFind(LastIndexOf)
  • Size(Count)

Installation:

  • Clone repo into addons folder.