import { makeInNOutFunctionDesc } from '../../../Nodes/FunctionNode.js'; // Unreal Engine Blueprint Time nodes: https://docs.unrealengine.com/4.27/en-US/BlueprintAPI/Utilities/Time/ export const Now = makeInNOutFunctionDesc({ name: 'time/now', label: 'Now', out: 'float', exec: () => Date.now() / 1000 });