zworld-em/Plugins/sentry-unreal/Source/Sentry/Private/SentryTraceSampler.cpp

11 lines
275 B
C++
Raw Normal View History

2025-05-11 22:07:21 +08:00
// Copyright (c) 2024 Sentry. All Rights Reserved.
#include "SentryTraceSampler.h"
#include "SentrySamplingContext.h"
bool USentryTraceSampler::Sample_Implementation(USentrySamplingContext* samplingContext, float& samplingValue)
{
samplingValue = 1.0f;
return true;
}