06-16-2025, 07:22 PM
Is there a newer better way to do this? This is problematic with identical names like Rotation operators being used multiple times. I can't think of a way to get identical event names (sloppy but possible)
Code:
function GetTyFlowOperators TyEventObj = (
local AllOperators = #()
local Op
local i = 1
do
(
if TyEventObj[i] != undefined then (Op = TyEventObj[i]) else (exit)
append AllOperators Op
i += 1
) while tyEventObj[i] != undefined
return AllOperators
)