mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
20 lines
704 B
C++
20 lines
704 B
C++
#include "FortPlayerInputSettings.h"
|
|
|
|
UFortPlayerInputSettings::UFortPlayerInputSettings() {
|
|
this->HoldInputTime = 0.00f;
|
|
this->HoldCraftAmmoTime = 0.00f;
|
|
this->HoldHudChatTime = 0.00f;
|
|
this->HoldVoteDialogTime = 0.00f;
|
|
this->bBuildingPickerOnlyChoosesCategories = false;
|
|
this->bWeaponPickerShowOnlySlottedItems = false;
|
|
this->bTrapPickerUsesRadial = false;
|
|
this->bRadialClosesOnRelease = false;
|
|
this->NumActiveTrapSlots = 3;
|
|
this->bWeaponSlotsAreSharedWhenUsingGamepad = false;
|
|
this->bEditModeUsableFromCombatMode = false;
|
|
this->bOnlyShowNextPrevBuildingSlotKeybinds = false;
|
|
this->bEnabledForCampaign = false;
|
|
this->bEnabledForAthena = false;
|
|
}
|
|
|