-
Notifications
You must be signed in to change notification settings - Fork 324
reference_misc
This reference was generated automatically. Please do not edit the page directly, instead change the docstrings of the nodes in their Python files or the generator script and open a pull request. Thank you for contributing!
This reference was built for Armory 2023.3.
- Basic
- Data
- Motion
- Values
- Graphics
- Sound
- Misc
Returns an int depending on the respective boolean state.
Returns a vector depending on the respective boolean state.
Calls the given group of nodes.
Returns the connected value only if it is not null
, otherwise the default
value is returned.
Inputs:
-
Value
: the one that will be eventually null -
Default
: will be returned in case the primary value is null
Returns the application execution time and the delta time.
Returns the debug console settings.
Returns the current display resolution.
See also:
Get the frames per second count.
Returns the current window resolution.
See also:
Input for a node group.
DEPRECATED. This node is deprecated and will be removed in future versions of Armory. Please use the following node(s) instead:
Group Input Node
.
Sets the connected chain of nodes as a group of nodes.
Output for a node group.
Sets the debug console settings.
Sets the global time scale.
Waits a specified amount of seconds until passing through the incoming signal.
Runs a timer with a specified amount of repetitions.
Inputs:
-
Start
: Start the timer or continue if paused. In both cases, the values ofDuration
andRepeat
are (re-)evaluated. -
Pause
: Pause the timer. -
Stop
: Stop and reset the timer. This does not activate any outputs. -
Duration
: The time in seconds that the timer runs. -
Repeat
: The number of times the timer will repeat, or 0 for infinite repetition.
Outputs:
-
Out
: Activated after each repetition. -
Done
: Activated after the last repetition (never activated ifRepeat
is 0). -
Running
: Whether the timer is currently running. -
Time Passed
: The time in seconds that has passed since the current repetition started, excluding pauses. -
Time Left
: The time left in seconds until the timer is done or the next repetition starts. -
Progress
: Percentage of the timer's progress of the current repetition (Time Passed/Duration
). -
Repetitions
: The index of the current repetition, starting at 0.