Files
FlaxEngine/Source/Engine/Animations/Config.h
2023-01-10 15:29:37 +01:00

18 lines
570 B
C

// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
#pragma once
// Floating-point values tolerance error for blending animations
#define ANIM_GRAPH_BLEND_THRESHOLD 1e-5f
#define ANIM_GRAPH_BLEND_THRESHOLD2 (ANIM_GRAPH_BLEND_THRESHOLD * ANIM_GRAPH_BLEND_THRESHOLD)
// Enables/disables detailed animation graph profiling (via CPU profiler events)
#define ANIM_GRAPH_PROFILE 1
#if ANIM_GRAPH_PROFILE
#include "Engine/Profiler/ProfilerCPU.h"
#define ANIM_GRAPH_PROFILE_EVENT(name) PROFILE_CPU_NAMED(name)
#else
#define ANIM_GRAPH_PROFILE_EVENT(name)
#endif