An open API service indexing awesome lists of open source software.

https://github.com/j-c7/godot-collections-extens

Some extension methods for godot C# collections
https://github.com/j-c7/godot-collections-extens

Last synced: 7 months ago
JSON representation

Some extension methods for godot C# collections

Awesome Lists containing this project

README

          

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