Skip to content

7jcdev/godot-collections-extens

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

Caution

Using these methods may be slower.

  • 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.

About

Some extension methods for godot C# collections

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages