Updated AI for Hearing Perception

This commit is contained in:
Philip W 2023-01-15 19:50:39 +00:00
parent 320a74d4bb
commit fdd9c5debe
22 changed files with 64 additions and 25 deletions

17
.vsconfig Normal file
View File

@ -0,0 +1,17 @@
{
"version": "1.0",
"components": [
"Microsoft.Net.Component.4.6.2.TargetingPack",
"Microsoft.VisualStudio.Component.VC.14.33.17.3.ARM64",
"Microsoft.VisualStudio.Component.VC.14.33.17.3.x86.x64",
"Microsoft.VisualStudio.Component.VC.Tools.ARM64",
"Microsoft.VisualStudio.Component.VC.Tools.x86.x64",
"Microsoft.VisualStudio.Component.Windows10SDK",
"Microsoft.VisualStudio.Workload.CoreEditor",
"Microsoft.VisualStudio.Workload.ManagedDesktop",
"Microsoft.VisualStudio.Workload.NativeCrossPlat",
"Microsoft.VisualStudio.Workload.NativeDesktop",
"Microsoft.VisualStudio.Workload.NativeGame",
"Microsoft.VisualStudio.Workload.Universal"
]
}

View File

@ -66,6 +66,10 @@ bEnableMouseSmoothing=True
bEnableFOVScaling=True
bCaptureMouseOnLaunch=True
bEnableLegacyInputScales=True
bEnableMotionControls=True
bFilterInputByPlatformUser=False
bShouldFlushPressedKeysOnViewportFocusLost=True
bEnableDynamicComponentInputBinding=True
bAlwaysShowTouchInterface=False
bShowConsoleOnFourFingerTap=True
bEnableGestureRecognizer=False
@ -88,8 +92,8 @@ DoubleClickTime=0.200000
+AxisMappings=(AxisName="Move Right / Left",Scale=1.000000,Key=Gamepad_LeftX)
+AxisMappings=(AxisName="Turn Right / Left Gamepad",Scale=1.000000,Key=Gamepad_RightX)
+AxisMappings=(AxisName="Turn Right / Left Mouse",Scale=1.000000,Key=MouseX)
DefaultPlayerInputClass=/Script/Engine.PlayerInput
DefaultInputComponentClass=/Script/Engine.InputComponent
DefaultPlayerInputClass=/Script/EnhancedInput.EnhancedPlayerInput
DefaultInputComponentClass=/Script/EnhancedInput.EnhancedInputComponent
DefaultTouchInterface=/Engine/MobileResources/HUD/DefaultVirtualJoysticks.DefaultVirtualJoysticks
-ConsoleKeys=Tilde
+ConsoleKeys=Tilde

BIN
Content/BlueprintAI/AI/AIBruh.uasset (Stored with Git LFS)

Binary file not shown.

BIN
Content/BlueprintAI/AI/AIC_Enemy.uasset (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

BIN
Content/BlueprintAI/AI/AI_Enemy.uasset (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Content/BlueprintAI/AI/BB_Bruh.uasset (Stored with Git LFS)

Binary file not shown.

BIN
Content/BlueprintAI/AI/BB_Enemy.uasset (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Content/BlueprintAI/AI/BTT_Chase.uasset (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
Content/BlueprintAI/AI/BT_Bruh.uasset (Stored with Git LFS)

Binary file not shown.

BIN
Content/BlueprintAI/AI/BT_Enemy.uasset (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Content/BlueprintAI/BruhAI/AIBruh.uasset (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Content/BlueprintAI/BruhAI/AIControllerBruh.uasset (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Content/BlueprintAI/BruhAI/BB_Bruh.uasset (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Content/BlueprintAI/BruhAI/BTT_ChaseBruh.uasset (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Content/BlueprintAI/BruhAI/BTT_FindRandomPatrol.uasset (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Content/BlueprintAI/BruhAI/BT_Bruh.uasset (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -24,7 +24,7 @@ public:
// Called every frame
virtual void TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction) override;
UPROPERTY(EditDefaults)
UPROPERTY(EditDefaultsOnly)
bool bInteractable = false;
UFUNCTION(Blueprintcallable)

View File

@ -327,10 +327,10 @@ void ATurnBaseCombatV2::UpdateResourceBars() const
void ATurnBaseCombatV2::ToggleButtons() const
{
FButton->SetIsEnabled(!FButton->bIsEnabled);
WButton->SetIsEnabled(!WButton->bIsEnabled);
BackspaceButton->SetIsEnabled(!BackspaceButton->bIsEnabled);
CastButton->SetIsEnabled(!CastButton->bIsEnabled);
FButton->SetIsEnabled(!FButton->GetIsEnabled());
WButton->SetIsEnabled(!WButton->GetIsEnabled());
BackspaceButton->SetIsEnabled(!BackspaceButton->GetIsEnabled());
CastButton->SetIsEnabled(!CastButton->GetIsEnabled());
}
void ATurnBaseCombatV2::EnemyTurn()

View File

@ -1,6 +1,6 @@
{
"FileVersion": 3,
"EngineAssociation": "5.0",
"EngineAssociation": "5.1",
"Category": "",
"Description": "",
"Modules": [