-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8cf2891
commit 3637323
Showing
1 changed file
with
75 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,78 @@ | ||
# array_utils_gms2 | ||
Some array utils for game maker studio 2 | ||
Array utils for GameMaker 2022.11 | ||
|
||
# All Functions with JSDoc Header | ||
https://github.com/JeffersonJales/array_utils_gms2/blob/master/scripts/scr_array_utils/scr_array_utils.gml | ||
**All functions have JSDoc Header (for GameMaker Feather)** | ||
|
||
**Download it [here](https://github.com/JeffersonJales/array_utils_gms2/releases/tag/1.1.3)** | ||
|
||
# Functions | ||
|
||
<details> | ||
<summary>Convertions (array_to and array_from) </summary> | ||
|
||
## array_to_list | ||
## array_from_list | ||
## array_to_queue | ||
## array_from_queue | ||
## array_to_stack | ||
## array_from_stack | ||
|
||
</details> | ||
|
||
|
||
<details> | ||
<summary>Get information about the array </summary> | ||
|
||
## array_index_inside_bounds | ||
## array_empty | ||
## array_find_index_simple | ||
## array_find_index_all | ||
## array_includes | ||
## array_includes_amount | ||
## array_any_args | ||
## array_all_args | ||
|
||
</details> | ||
|
||
<details> | ||
<summary>Get values from the array </summary> | ||
|
||
## array_get_ext | ||
## array_get_max_value | ||
## array_get_min_value | ||
## array_get_random | ||
## array_last | ||
|
||
</details> | ||
|
||
<details> | ||
<summary> Change the array </summary> | ||
|
||
## array_swap | ||
## array_clear | ||
## array_remove | ||
## array_shuffle | ||
|
||
</details> | ||
|
||
|
||
<details> | ||
<summary> Creates a new array </summary> | ||
|
||
## array_foreach_args | ||
## array_filter_args | ||
## array_map_args | ||
## array_compact | ||
## array_diff | ||
|
||
</details> | ||
|
||
<details> | ||
<summary> More Utilities </summary> | ||
|
||
## array_join | ||
## array_clone | ||
## array_create_range | ||
|
||
</details> | ||
|
||
# Download here | ||
https://github.com/JeffersonJales/array_utils_gms2/releases/tag/1.1.3 |