DRG-Femboy-Voice/Source/FSD/Private/AvoidCeilingComponent.cpp
2025-04-15 12:39:31 -07:00

11 lines
304 B
C++
Executable file

#include "AvoidCeilingComponent.h"
UAvoidCeilingComponent::UAvoidCeilingComponent() {
this->MaxDuckDistance = 100.00f;
this->TraceVerticalStart = 100.00f;
this->MinVerticalSpace = 250.00f;
this->DuckSpeed = 10.00f;
this->ComponentToMove = NULL;
this->IsDuckingEnabled = true;
}