Conditions
Conditions can be used in systems or as Run Conditions.
Functions
timePassed
Conditions.
timePassed
(
time:
number
--
Time in seconds
) →
hasTimePassed
(
)
→
boolean
A Throttle condition which checks whether the amount of time given has passed or not.
runOnce
Conditions.
runOnce
(
) →
hasRanOnce
(
)
→
boolean
Checks whether the condition has been called once before
onEvent
Conditions.
onEvent
(
instance:
RBXScriptSignal
|
Instance
|
SignalLike
<
...any
>
|
GenericTable
|
(
(
Callback
<
U...
>
,
...any
)
→
...any
)
,
) →
(
hasNewEvent
(
)
→
boolean
,
collectEvents
(
)
→
(
)
→
(
number
,
U...
)
,
getDisconnectFn
(
)
→
(
)
→
(
)
)
Checks for any new events and allows for the collection of
those events.
Read OnEvent for more information.
isNot
Conditions.
isNot
(
condition:
(
)
→
boolean
,
...:
any
) →
inverseCondition
(
)
→
boolean
Inverses a given condition.