mirror of
https://github.com/Mestima/GodotStack.git
synced 2025-05-02 20:30:15 +00:00
GodotStack
A stack class for Godot Engine
Supported versions
Godot version | Supported | Branch |
---|---|---|
4.x | yes | main |
Compilation
- Download GodotStack and place it to the Godot
modules
folder. - Rename
GodotStack-main
toGodotStack
- Compile Godot like usual using one of these guides.
Example compilation Windows
command: scons p=windows tools=yes -j4
Methods
stack.getQueue() # get stack as an array
stack.push(element: Variant) # push a new element to stack 1st position
stack.pushBack(element: Variant) # push a new element to stack last position
stack.first() # get first stack element
stack.last() # get stack last element
stack.size() # get stack size
stack.isEmpty() # returns a boolean value indicates that stack is empty or not
stack.drop() # removes all stack elements
Languages
C++
84.2%
C
12.1%
Python
3.7%