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
- Host: GitHub
- URL: https://github.com/j-c7/godot-collections-extens
- Owner: j-c7
- License: mit
- Created: 2024-05-11T00:05:52.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-18T09:53:16.000Z (10 months ago)
- Last Synced: 2025-03-17T20:41:23.448Z (8 months ago)
- Language: C#
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.
-------------------------------------