From 260de3ea03adafe75f0642ca08cd1b203424db36 Mon Sep 17 00:00:00 2001 From: Joseph Rafferty Date: Wed, 31 Jan 2024 20:11:40 -0500 Subject: [PATCH] Added time offset to AI reproduction. Got ammo only killing correct virus. Task list hazmat suit, samples collected, vaccines created, and remaining viruses working correctly. Finished moving platform BP actor (no more stutter). Added color change to character when wearing hazmat suit. Viruses, samples, and acid pools all damage player correctly. --- Config/DefaultEngine.ini | 6 +- Config/DefaultGame.ini | 92 +++++++++++++++++++ Content/FirstPerson/AI/BP_CrystalVirus.uasset | 4 +- .../FirstPerson/AI/BP_FloatingVirus.uasset | 4 +- Content/FirstPerson/AI/BP_SlimeVirus.uasset | 4 +- Content/FirstPerson/AI/BP_VirusAlpha.uasset | 3 + Content/FirstPerson/AI/BP_VirusBeta.uasset | 3 + Content/FirstPerson/AI/BP_VirusCrystal.uasset | 3 + .../FirstPerson/AI/BP_VirusFloating.uasset | 3 + Content/FirstPerson/AI/BP_VirusGamma.uasset | 3 + Content/FirstPerson/AI/BP_VirusSlime.uasset | 3 + .../Blueprints/BP_FirstPersonCharacter.uasset | 4 +- .../Blueprints/BP_FirstPersonGameMode.uasset | 4 +- .../Blueprints/BP_SyringeGunComponent.uasset | 4 +- .../FirstPerson/Blueprints/BP_Vaccine.uasset | 4 +- .../Blueprints/Enumerations/E_TaskType.uasset | 4 +- .../Enumerations/E_VirusType.uasset | 4 +- .../BP_DamagePlayerCollision.uasset | 3 + .../Elevator/BP_MovingPlatform.uasset | 4 +- .../Functionality/Virus/BAC_Virus.uasset | 4 +- .../Blueprints/Hazards/BP_AcidPool.uasset | 4 +- .../Interactables/Pickups/BP_Armor.uasset | 4 +- .../Pickups/BP_HazmatSuit.uasset | 3 + .../Pickups/BP_HealthPickup.uasset | 4 +- .../Pickups/BP_VirusSample.uasset | 4 +- .../Interactables/Stations/BP_Lab.uasset | 4 +- .../Blueprints/Interfaces/BPI_HUD.uasset | 4 +- .../Blueprints/Structures/F_TaskItem.uasset | 4 +- .../Blueprints/Widgets/Assets/T_1.uasset | 3 - .../Blueprints/Widgets/Assets/T_2.uasset | 3 - .../Blueprints/Widgets/Assets/T_3.uasset | 3 - .../Blueprints/Widgets/Assets/T_4.uasset | 3 - .../Blueprints/Widgets/Assets/T_Alpha.uasset | 4 +- .../Widgets/Assets/T_HazmatSuit.uasset | 3 + .../Blueprints/Widgets/Assets/T_Virus.uasset | 3 + .../Blueprints/Widgets/BP_HUD.uasset | 4 +- .../Blueprints/Widgets/WBP_Task.uasset | 4 +- .../Blueprints/Widgets/WBP_TaskList.uasset | 4 +- .../Maps/Joe_level_for_testing.umap | 4 +- .../Instances/Manny/MI_Manny_01.uasset | 4 +- GAM305_FirstPerson.uproject | 3 + 41 files changed, 177 insertions(+), 62 deletions(-) create mode 100644 Content/FirstPerson/AI/BP_VirusAlpha.uasset create mode 100644 Content/FirstPerson/AI/BP_VirusBeta.uasset create mode 100644 Content/FirstPerson/AI/BP_VirusCrystal.uasset create mode 100644 Content/FirstPerson/AI/BP_VirusFloating.uasset create mode 100644 Content/FirstPerson/AI/BP_VirusGamma.uasset create mode 100644 Content/FirstPerson/AI/BP_VirusSlime.uasset create mode 100644 Content/FirstPerson/Blueprints/Functionality/DamagePlayer/BP_DamagePlayerCollision.uasset create mode 100644 Content/FirstPerson/Blueprints/Interactables/Pickups/BP_HazmatSuit.uasset delete mode 100644 Content/FirstPerson/Blueprints/Widgets/Assets/T_1.uasset delete mode 100644 Content/FirstPerson/Blueprints/Widgets/Assets/T_2.uasset delete mode 100644 Content/FirstPerson/Blueprints/Widgets/Assets/T_3.uasset delete mode 100644 Content/FirstPerson/Blueprints/Widgets/Assets/T_4.uasset create mode 100644 Content/FirstPerson/Blueprints/Widgets/Assets/T_HazmatSuit.uasset create mode 100644 Content/FirstPerson/Blueprints/Widgets/Assets/T_Virus.uasset diff --git a/Config/DefaultEngine.ini b/Config/DefaultEngine.ini index 712b639..418dcf5 100644 --- a/Config/DefaultEngine.ini +++ b/Config/DefaultEngine.ini @@ -36,8 +36,10 @@ +Profiles=(Name="Vehicle",CollisionEnabled=QueryAndPhysics,bCanModify=False,ObjectTypeName="Vehicle",CustomResponses=,HelpMessage="Vehicle object that blocks Vehicle, WorldStatic, and WorldDynamic. All other channels will be set to default.") +Profiles=(Name="UI",CollisionEnabled=QueryOnly,bCanModify=False,ObjectTypeName="WorldDynamic",CustomResponses=((Channel="WorldStatic",Response=ECR_Overlap),(Channel="Pawn",Response=ECR_Overlap),(Channel="Visibility"),(Channel="WorldDynamic",Response=ECR_Overlap),(Channel="Camera",Response=ECR_Overlap),(Channel="PhysicsBody",Response=ECR_Overlap),(Channel="Vehicle",Response=ECR_Overlap),(Channel="Destructible",Response=ECR_Overlap)),HelpMessage="WorldStatic object that overlaps all actors by default. All new custom channels will use its own default response. ") +Profiles=(Name="Projectile",CollisionEnabled=QueryOnly,bCanModify=True,ObjectTypeName="Projectile",CustomResponses=,HelpMessage="Preset for projectiles") -+DefaultChannelResponses=(Channel=ECC_GameTraceChannel1,DefaultResponse=ECR_Block,bTraceType=False,bStaticObject=False,Name="Projectile") -+DefaultChannelResponses=(Channel=ECC_GameTraceChannel2,DefaultResponse=ECR_Block,bTraceType=True,bStaticObject=False,Name="Interact") ++Profiles=(Name="DamagePlayer",CollisionEnabled=QueryOnly,bCanModify=True,ObjectTypeName="DamagePlayer",CustomResponses=((Channel="WorldStatic",Response=ECR_Ignore),(Channel="WorldDynamic",Response=ECR_Ignore),(Channel="Pawn",Response=ECR_Overlap),(Channel="Visibility",Response=ECR_Ignore),(Channel="Camera",Response=ECR_Ignore),(Channel="PhysicsBody",Response=ECR_Ignore),(Channel="Vehicle",Response=ECR_Ignore),(Channel="Destructible",Response=ECR_Ignore),(Channel="DamagePlayer",Response=ECR_Ignore)),HelpMessage="Preset to damage player") ++DefaultChannelResponses=(Channel=ECC_GameTraceChannel1,DefaultResponse=ECR_Ignore,bTraceType=False,bStaticObject=False,Name="Projectile") ++DefaultChannelResponses=(Channel=ECC_GameTraceChannel2,DefaultResponse=ECR_Ignore,bTraceType=True,bStaticObject=False,Name="Interact") ++DefaultChannelResponses=(Channel=ECC_GameTraceChannel3,DefaultResponse=ECR_Overlap,bTraceType=False,bStaticObject=False,Name="DamagePlayer") +EditProfiles=(Name="Trigger",CustomResponses=((Channel="Projectile",Response=ECR_Ignore))) -ProfileRedirects=(OldName="BlockingVolume",NewName="InvisibleWall") -ProfileRedirects=(OldName="InterpActor",NewName="IgnoreOnlyPawn") diff --git a/Config/DefaultGame.ini b/Config/DefaultGame.ini index f49337e..19eecf1 100644 --- a/Config/DefaultGame.ini +++ b/Config/DefaultGame.ini @@ -1,3 +1,95 @@ [/Script/EngineSettings.GeneralProjectSettings] ProjectID=607445424CE95B22EED524A2C242C49B ProjectName=First Person BP Game Template + +[/Script/UnrealEd.ProjectPackagingSettings] +Build=IfProjectHasCode +BuildConfiguration=PPBC_Development +BuildTarget= +FullRebuild=False +ForDistribution=False +IncludeDebugFiles=False +BlueprintNativizationMethod=Disabled +bIncludeNativizedAssetsInProjectGeneration=False +bExcludeMonolithicEngineHeadersInNativizedCode=False +UsePakFile=True +bUseIoStore=True +bUseZenStore=False +bMakeBinaryConfig=False +bGenerateChunks=False +bGenerateNoChunks=False +bChunkHardReferencesOnly=False +bForceOneChunkPerFile=False +MaxChunkSize=0 +bBuildHttpChunkInstallData=False +HttpChunkInstallDataDirectory=(Path="") +WriteBackMetadataToAssetRegistry=Disabled +bCompressed=True +PackageCompressionFormat=Oodle +bForceUseProjectCompressionFormatIgnoreHardwareOverride=False +PackageAdditionalCompressionOptions= +PackageCompressionMethod=Kraken +PackageCompressionLevel_DebugDevelopment=4 +PackageCompressionLevel_TestShipping=5 +PackageCompressionLevel_Distribution=7 +PackageCompressionMinBytesSaved=1024 +PackageCompressionMinPercentSaved=5 +bPackageCompressionEnableDDC=False +PackageCompressionMinSizeToConsiderDDC=0 +HttpChunkInstallDataVersion= +IncludePrerequisites=True +IncludeAppLocalPrerequisites=False +bShareMaterialShaderCode=True +bDeterministicShaderCodeOrder=False +bSharedMaterialNativeLibraries=True +ApplocalPrerequisitesDirectory=(Path="") +IncludeCrashReporter=False +InternationalizationPreset=English +-CulturesToStage=en ++CulturesToStage=en +LocalizationTargetCatchAllChunkId=0 +bCookAll=False +bCookMapsOnly=True +bSkipEditorContent=False +bSkipMovies=False +-IniKeyDenylist=KeyStorePassword +-IniKeyDenylist=KeyPassword +-IniKeyDenylist=rsa.privateexp +-IniKeyDenylist=rsa.modulus +-IniKeyDenylist=rsa.publicexp +-IniKeyDenylist=aes.key +-IniKeyDenylist=SigningPublicExponent +-IniKeyDenylist=SigningModulus +-IniKeyDenylist=SigningPrivateExponent +-IniKeyDenylist=EncryptionKey +-IniKeyDenylist=DevCenterUsername +-IniKeyDenylist=DevCenterPassword +-IniKeyDenylist=IOSTeamID +-IniKeyDenylist=SigningCertificate +-IniKeyDenylist=MobileProvision +-IniKeyDenylist=IniKeyDenylist +-IniKeyDenylist=IniSectionDenylist ++IniKeyDenylist=KeyStorePassword ++IniKeyDenylist=KeyPassword ++IniKeyDenylist=rsa.privateexp ++IniKeyDenylist=rsa.modulus ++IniKeyDenylist=rsa.publicexp ++IniKeyDenylist=aes.key ++IniKeyDenylist=SigningPublicExponent ++IniKeyDenylist=SigningModulus ++IniKeyDenylist=SigningPrivateExponent ++IniKeyDenylist=EncryptionKey ++IniKeyDenylist=DevCenterUsername ++IniKeyDenylist=DevCenterPassword ++IniKeyDenylist=IOSTeamID ++IniKeyDenylist=SigningCertificate ++IniKeyDenylist=MobileProvision ++IniKeyDenylist=IniKeyDenylist ++IniKeyDenylist=IniSectionDenylist +-IniSectionDenylist=HordeStorageServers +-IniSectionDenylist=StorageServers ++IniSectionDenylist=HordeStorageServers ++IniSectionDenylist=StorageServers ++MapsToCook=(FilePath="/Game/FirstPerson/Maps/Joe_level_for_testing") ++MapsToCook=(FilePath="/Game/FirstPerson/Maps/FirstPersonMap") + diff --git a/Content/FirstPerson/AI/BP_CrystalVirus.uasset b/Content/FirstPerson/AI/BP_CrystalVirus.uasset index 59959da..7fdb97b 100644 --- a/Content/FirstPerson/AI/BP_CrystalVirus.uasset +++ b/Content/FirstPerson/AI/BP_CrystalVirus.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9588f961440a37e89b6f63827b3593cfac29951e3b6a47de242b3704cab22e14 -size 47650 +oid sha256:b988af75f3a9d2c4943907e2c9b2a64ae2dc59b823a72eab28aa8bd85668145e +size 2510 diff --git a/Content/FirstPerson/AI/BP_FloatingVirus.uasset b/Content/FirstPerson/AI/BP_FloatingVirus.uasset index 07153cc..53d66a8 100644 --- a/Content/FirstPerson/AI/BP_FloatingVirus.uasset +++ b/Content/FirstPerson/AI/BP_FloatingVirus.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9233be08f6c7eea6c193142a2d36c97c789435d5d22ca22a36494b8faa56d3f7 -size 96812 +oid sha256:41bd3888d6b656c3dda3eac35e52e5754503a0022f415f29d86dff73425ed94c +size 2533 diff --git a/Content/FirstPerson/AI/BP_SlimeVirus.uasset b/Content/FirstPerson/AI/BP_SlimeVirus.uasset index dfbea29..d29cd85 100644 --- a/Content/FirstPerson/AI/BP_SlimeVirus.uasset +++ b/Content/FirstPerson/AI/BP_SlimeVirus.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:af96553318d96465e29869e3f1cb8cfad336aeb5fa21633aec7cffa4b18fa19e -size 47537 +oid sha256:6c190f88f1786f12c060d661f56abc27c8f36669c1db1e01c5ad5f880ebaa845 +size 2464 diff --git a/Content/FirstPerson/AI/BP_VirusAlpha.uasset b/Content/FirstPerson/AI/BP_VirusAlpha.uasset new file mode 100644 index 0000000..e76a86b --- /dev/null +++ b/Content/FirstPerson/AI/BP_VirusAlpha.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57fd729625a125fdeb87791bf860607412a933b2567636f0f5919b3c60890583 +size 49013 diff --git a/Content/FirstPerson/AI/BP_VirusBeta.uasset b/Content/FirstPerson/AI/BP_VirusBeta.uasset new file mode 100644 index 0000000..ec7d4c4 --- /dev/null +++ b/Content/FirstPerson/AI/BP_VirusBeta.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13e8c16f41caaf0d7b5f278baf1793ead5b00afe9b055f6751b5840e4c90f4fd +size 52641 diff --git a/Content/FirstPerson/AI/BP_VirusCrystal.uasset b/Content/FirstPerson/AI/BP_VirusCrystal.uasset new file mode 100644 index 0000000..0763275 --- /dev/null +++ b/Content/FirstPerson/AI/BP_VirusCrystal.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8b6d3bdec1525731a79bc85183171b65ed3712a81c8f85057d64db1017cb20b +size 2486 diff --git a/Content/FirstPerson/AI/BP_VirusFloating.uasset b/Content/FirstPerson/AI/BP_VirusFloating.uasset new file mode 100644 index 0000000..2c3a51d --- /dev/null +++ b/Content/FirstPerson/AI/BP_VirusFloating.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbecda14b6d2ab24b0a4d1205d6cf57c5650e42dbc464872ca417b30893b1bb5 +size 2497 diff --git a/Content/FirstPerson/AI/BP_VirusGamma.uasset b/Content/FirstPerson/AI/BP_VirusGamma.uasset new file mode 100644 index 0000000..0ada2da --- /dev/null +++ b/Content/FirstPerson/AI/BP_VirusGamma.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1984d369ab8f5b0000d0af717afce3f569ebf22cfd21f48751197ad60d00ad56 +size 100524 diff --git a/Content/FirstPerson/AI/BP_VirusSlime.uasset b/Content/FirstPerson/AI/BP_VirusSlime.uasset new file mode 100644 index 0000000..1c1b165 --- /dev/null +++ b/Content/FirstPerson/AI/BP_VirusSlime.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9eb7315587ba153539ee6a0804f8601f956ef410cd124f33632cd7f292a14bc +size 2452 diff --git a/Content/FirstPerson/Blueprints/BP_FirstPersonCharacter.uasset b/Content/FirstPerson/Blueprints/BP_FirstPersonCharacter.uasset index ee31b84..e0ed41b 100644 --- a/Content/FirstPerson/Blueprints/BP_FirstPersonCharacter.uasset +++ b/Content/FirstPerson/Blueprints/BP_FirstPersonCharacter.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e16ed7da0937a99ed53a271e6abd82b413f0f7fa7aad11455cbff78a33b75d55 -size 513437 +oid sha256:dcdbe33d0e76a997cb3a5076244954dadbef70cdfff4c7697d5c595d60f8c68d +size 558350 diff --git a/Content/FirstPerson/Blueprints/BP_FirstPersonGameMode.uasset b/Content/FirstPerson/Blueprints/BP_FirstPersonGameMode.uasset index a14a837..37fd0e3 100644 --- a/Content/FirstPerson/Blueprints/BP_FirstPersonGameMode.uasset +++ b/Content/FirstPerson/Blueprints/BP_FirstPersonGameMode.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cc261de39bafa55cce73ed459c9e7c48098870c8e885475ec4e1d03c9e9ce1a1 -size 237449 +oid sha256:b7c6b2fd275a614b39ebb028e7980153f26889504802a506e32becd595abc160 +size 428386 diff --git a/Content/FirstPerson/Blueprints/BP_SyringeGunComponent.uasset b/Content/FirstPerson/Blueprints/BP_SyringeGunComponent.uasset index 4347227..8574188 100644 --- a/Content/FirstPerson/Blueprints/BP_SyringeGunComponent.uasset +++ b/Content/FirstPerson/Blueprints/BP_SyringeGunComponent.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a9799afc19ee5a2e0fc1a55000e12da222e45ccd18334357b0b9ebf516097069 -size 216012 +oid sha256:762980a7bb2f0c2260b3632aeae3184cc594911ac1be444d7892bd517a24c9d3 +size 232931 diff --git a/Content/FirstPerson/Blueprints/BP_Vaccine.uasset b/Content/FirstPerson/Blueprints/BP_Vaccine.uasset index 27b4016..89999e2 100644 --- a/Content/FirstPerson/Blueprints/BP_Vaccine.uasset +++ b/Content/FirstPerson/Blueprints/BP_Vaccine.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:75a87391b7ae9c48336d54c7d5275f226fd22cb708b22474c8e3422581dc0774 -size 68492 +oid sha256:d0265590c85702fff3bd49ea82bdad9e144c2bc93dde08cac0b5e5dfed05e7b8 +size 107263 diff --git a/Content/FirstPerson/Blueprints/Enumerations/E_TaskType.uasset b/Content/FirstPerson/Blueprints/Enumerations/E_TaskType.uasset index 4358f64..e974d7e 100644 --- a/Content/FirstPerson/Blueprints/Enumerations/E_TaskType.uasset +++ b/Content/FirstPerson/Blueprints/Enumerations/E_TaskType.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7c60f5abb00c2e695c87bf5b9c0d79429f823114f5049d707e21e6bab4c4b3e6 -size 3090 +oid sha256:531d2773bc48161e0d9e6c732f47b7efa1b0609e92d595787205cc61f562edd0 +size 4958 diff --git a/Content/FirstPerson/Blueprints/Enumerations/E_VirusType.uasset b/Content/FirstPerson/Blueprints/Enumerations/E_VirusType.uasset index 36e73a3..a55aca9 100644 --- a/Content/FirstPerson/Blueprints/Enumerations/E_VirusType.uasset +++ b/Content/FirstPerson/Blueprints/Enumerations/E_VirusType.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5d081c8611fcbb0c53a2b55812a8fdb8319285d70f065b18d79da1d799508af8 -size 2735 +oid sha256:5538fa1a3cb8e36c34a1ee4c0304dd32c4afa9eb366f0d5fd83007932fd871f1 +size 3094 diff --git a/Content/FirstPerson/Blueprints/Functionality/DamagePlayer/BP_DamagePlayerCollision.uasset b/Content/FirstPerson/Blueprints/Functionality/DamagePlayer/BP_DamagePlayerCollision.uasset new file mode 100644 index 0000000..fe791ed --- /dev/null +++ b/Content/FirstPerson/Blueprints/Functionality/DamagePlayer/BP_DamagePlayerCollision.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1540f55ca23385c36823b979173a6940fc6674cf68940de67a1c86cf59e5c10b +size 135132 diff --git a/Content/FirstPerson/Blueprints/Functionality/Elevator/BP_MovingPlatform.uasset b/Content/FirstPerson/Blueprints/Functionality/Elevator/BP_MovingPlatform.uasset index d202090..544b823 100644 --- a/Content/FirstPerson/Blueprints/Functionality/Elevator/BP_MovingPlatform.uasset +++ b/Content/FirstPerson/Blueprints/Functionality/Elevator/BP_MovingPlatform.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9a1c6de68f85ba0bbdd8347e9a935f96c1d663ed811bbf0abda1b83d5eaac6cf -size 179889 +oid sha256:a04240ec8fae359f9fd44ae8db10a7693eb20969f4e9b6c953cc76b2f7fa6644 +size 219994 diff --git a/Content/FirstPerson/Blueprints/Functionality/Virus/BAC_Virus.uasset b/Content/FirstPerson/Blueprints/Functionality/Virus/BAC_Virus.uasset index 79f1a90..433fa4c 100644 --- a/Content/FirstPerson/Blueprints/Functionality/Virus/BAC_Virus.uasset +++ b/Content/FirstPerson/Blueprints/Functionality/Virus/BAC_Virus.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:63269ac0b7ade3f345f7a7526fc88ee6b6858368e7416c17a3a2bb0cd5d59812 -size 222818 +oid sha256:0e407a84c039ca995aa36ed058877d57102ef3627f6d7e56de88ece9ed296991 +size 285741 diff --git a/Content/FirstPerson/Blueprints/Hazards/BP_AcidPool.uasset b/Content/FirstPerson/Blueprints/Hazards/BP_AcidPool.uasset index 46da3fa..2a686e9 100644 --- a/Content/FirstPerson/Blueprints/Hazards/BP_AcidPool.uasset +++ b/Content/FirstPerson/Blueprints/Hazards/BP_AcidPool.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:aea09ac2d6dbee78e75e1e8949b387224c9f89571ea3f04649d92c1137bfe8ca -size 69812 +oid sha256:718993c63e2d99820738e8c55943ec8f77fe284328a64b53907a011996db336d +size 59488 diff --git a/Content/FirstPerson/Blueprints/Interactables/Pickups/BP_Armor.uasset b/Content/FirstPerson/Blueprints/Interactables/Pickups/BP_Armor.uasset index 672bac4..a4728dd 100644 --- a/Content/FirstPerson/Blueprints/Interactables/Pickups/BP_Armor.uasset +++ b/Content/FirstPerson/Blueprints/Interactables/Pickups/BP_Armor.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a329d7823573ac7fb9d6220fc90f6892ad7c169cfabb7f72487d4c44f69d49b9 -size 38104 +oid sha256:041bedbbeb0ce8026cf374ca75cc171a0bfab39539d4aa6b79fe4bd98a0f8229 +size 2619 diff --git a/Content/FirstPerson/Blueprints/Interactables/Pickups/BP_HazmatSuit.uasset b/Content/FirstPerson/Blueprints/Interactables/Pickups/BP_HazmatSuit.uasset new file mode 100644 index 0000000..b747891 --- /dev/null +++ b/Content/FirstPerson/Blueprints/Interactables/Pickups/BP_HazmatSuit.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6146bfae36131f7f6fd1022338b300c364a9a680148c62f9dd0db2ac222c9e6 +size 40726 diff --git a/Content/FirstPerson/Blueprints/Interactables/Pickups/BP_HealthPickup.uasset b/Content/FirstPerson/Blueprints/Interactables/Pickups/BP_HealthPickup.uasset index 80a3700..f8fe4fd 100644 --- a/Content/FirstPerson/Blueprints/Interactables/Pickups/BP_HealthPickup.uasset +++ b/Content/FirstPerson/Blueprints/Interactables/Pickups/BP_HealthPickup.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fc0d308e6ffa507966e7d93087efb069ec9ffa29f59634f1f8655f735d5d306d -size 31436 +oid sha256:69099b2e9a786cb51c31f8b3c38b3c5ebaeb2ab326fd20fbed99de596747bcf0 +size 32030 diff --git a/Content/FirstPerson/Blueprints/Interactables/Pickups/BP_VirusSample.uasset b/Content/FirstPerson/Blueprints/Interactables/Pickups/BP_VirusSample.uasset index d6c1919..0400029 100644 --- a/Content/FirstPerson/Blueprints/Interactables/Pickups/BP_VirusSample.uasset +++ b/Content/FirstPerson/Blueprints/Interactables/Pickups/BP_VirusSample.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bc42604e5c09af3806dbca58bb515f2879aaccc096478d1001dc78ff0a7b06da -size 63754 +oid sha256:316b829a838f3c2a1180b78e8196ecc5997c6284c8ec1556c85f01035290a0f6 +size 69523 diff --git a/Content/FirstPerson/Blueprints/Interactables/Stations/BP_Lab.uasset b/Content/FirstPerson/Blueprints/Interactables/Stations/BP_Lab.uasset index 16dd45a..aaf8dc2 100644 --- a/Content/FirstPerson/Blueprints/Interactables/Stations/BP_Lab.uasset +++ b/Content/FirstPerson/Blueprints/Interactables/Stations/BP_Lab.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f49a72963276c484c600672fac2fc052353ace94b0e616c499a56f9d30978bdd -size 81374 +oid sha256:674315f6e34a4fb9ea31b5f3b0d3c5d3a489c09822833de2fb853ccb129fe5f8 +size 72143 diff --git a/Content/FirstPerson/Blueprints/Interfaces/BPI_HUD.uasset b/Content/FirstPerson/Blueprints/Interfaces/BPI_HUD.uasset index 8d94a02..4f60827 100644 --- a/Content/FirstPerson/Blueprints/Interfaces/BPI_HUD.uasset +++ b/Content/FirstPerson/Blueprints/Interfaces/BPI_HUD.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5038758e32614f6e3d732899211d42759aad82abdb895bcf151f871a904ff1a4 -size 15146 +oid sha256:64de1b24593296001482134a9c53d5d0bcac1c3f7d5e421fd9fdf695e5542956 +size 15126 diff --git a/Content/FirstPerson/Blueprints/Structures/F_TaskItem.uasset b/Content/FirstPerson/Blueprints/Structures/F_TaskItem.uasset index b57fae2..d15d8e7 100644 --- a/Content/FirstPerson/Blueprints/Structures/F_TaskItem.uasset +++ b/Content/FirstPerson/Blueprints/Structures/F_TaskItem.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:57c4a03c0257b74d6d7c52f1c9796bb8f4f1dfdd9aaef8b9cfd2a96e0300cb0b -size 7715 +oid sha256:bbaadbaa72a3a316f0b58a58f5d02beac4e5d3fbf163388b0705bce036d757ed +size 8652 diff --git a/Content/FirstPerson/Blueprints/Widgets/Assets/T_1.uasset b/Content/FirstPerson/Blueprints/Widgets/Assets/T_1.uasset deleted file mode 100644 index 830f6dd..0000000 --- a/Content/FirstPerson/Blueprints/Widgets/Assets/T_1.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d1db86174b40d3ba242d1d4e19dbe6c34ef89e59063a274dda81d87f2fb991f9 -size 7493 diff --git a/Content/FirstPerson/Blueprints/Widgets/Assets/T_2.uasset b/Content/FirstPerson/Blueprints/Widgets/Assets/T_2.uasset deleted file mode 100644 index bde93e8..0000000 --- a/Content/FirstPerson/Blueprints/Widgets/Assets/T_2.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9bf8724467c802b554953d03f5528995be017ff5529059af36faa710f3e37442 -size 7553 diff --git a/Content/FirstPerson/Blueprints/Widgets/Assets/T_3.uasset b/Content/FirstPerson/Blueprints/Widgets/Assets/T_3.uasset deleted file mode 100644 index c39d11f..0000000 --- a/Content/FirstPerson/Blueprints/Widgets/Assets/T_3.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4b80f694e592ef275ac991d926a8757f07641f28cb5f7b387b8cae3afe9dea67 -size 7574 diff --git a/Content/FirstPerson/Blueprints/Widgets/Assets/T_4.uasset b/Content/FirstPerson/Blueprints/Widgets/Assets/T_4.uasset deleted file mode 100644 index 2e2b7b3..0000000 --- a/Content/FirstPerson/Blueprints/Widgets/Assets/T_4.uasset +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7e4b41c568168a747f1e5e063a624239c26dd17e0559315ceace20a60c16cd3f -size 7515 diff --git a/Content/FirstPerson/Blueprints/Widgets/Assets/T_Alpha.uasset b/Content/FirstPerson/Blueprints/Widgets/Assets/T_Alpha.uasset index 5187121..01375e2 100644 --- a/Content/FirstPerson/Blueprints/Widgets/Assets/T_Alpha.uasset +++ b/Content/FirstPerson/Blueprints/Widgets/Assets/T_Alpha.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:231ecfaf564441c67579cff2e69de110da60a7d09c6b4841d1c7c2b880aa61a1 -size 53727 +oid sha256:7cf0f1643d8faf3084c0f373e5bcf1d11e92d5f564beeaa7de94bda7f6e00a6a +size 1244 diff --git a/Content/FirstPerson/Blueprints/Widgets/Assets/T_HazmatSuit.uasset b/Content/FirstPerson/Blueprints/Widgets/Assets/T_HazmatSuit.uasset new file mode 100644 index 0000000..c7ae7da --- /dev/null +++ b/Content/FirstPerson/Blueprints/Widgets/Assets/T_HazmatSuit.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e7a82301e4892e8f4304298b89d90bc90e2074b453cdb27f83db6780eb75713 +size 42547 diff --git a/Content/FirstPerson/Blueprints/Widgets/Assets/T_Virus.uasset b/Content/FirstPerson/Blueprints/Widgets/Assets/T_Virus.uasset new file mode 100644 index 0000000..a60b76c --- /dev/null +++ b/Content/FirstPerson/Blueprints/Widgets/Assets/T_Virus.uasset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74fef4e5721de34c992e3ecbfe854ebadfe15ff38c12dc55263c5ebf9505ef19 +size 61849 diff --git a/Content/FirstPerson/Blueprints/Widgets/BP_HUD.uasset b/Content/FirstPerson/Blueprints/Widgets/BP_HUD.uasset index 2282b22..773187d 100644 --- a/Content/FirstPerson/Blueprints/Widgets/BP_HUD.uasset +++ b/Content/FirstPerson/Blueprints/Widgets/BP_HUD.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0cb3273e8fa46d3586fcb09064e8cbd8a1ddb202ca7d2e895428bce2e7d51eb7 -size 41923 +oid sha256:48db0c8f31186b70a34c852ba948cddd6f677a970d3d2eaa3f29f89b5b7b8ec1 +size 41675 diff --git a/Content/FirstPerson/Blueprints/Widgets/WBP_Task.uasset b/Content/FirstPerson/Blueprints/Widgets/WBP_Task.uasset index b3ded2c..48584b4 100644 --- a/Content/FirstPerson/Blueprints/Widgets/WBP_Task.uasset +++ b/Content/FirstPerson/Blueprints/Widgets/WBP_Task.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cc09887d06779e02bff1bc0ea74c93c994b896f4fe8b50c2434c09188b6f5224 -size 117051 +oid sha256:00f813d5d3c832fa588a743f17e75b7852a258b7e38089c21c7688d027188a18 +size 136303 diff --git a/Content/FirstPerson/Blueprints/Widgets/WBP_TaskList.uasset b/Content/FirstPerson/Blueprints/Widgets/WBP_TaskList.uasset index 0dcf786..6dad33d 100644 --- a/Content/FirstPerson/Blueprints/Widgets/WBP_TaskList.uasset +++ b/Content/FirstPerson/Blueprints/Widgets/WBP_TaskList.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b96932491378e2d708a0129ac5a728d9a5e4a891b96d1a9d4dc48afae67ed7d2 -size 116922 +oid sha256:ac335761053a6b6fb00ded1ae810efee1c0b496c051f54a83340bcd7b802ab81 +size 104360 diff --git a/Content/FirstPerson/Maps/Joe_level_for_testing.umap b/Content/FirstPerson/Maps/Joe_level_for_testing.umap index 9853a06..e177075 100644 --- a/Content/FirstPerson/Maps/Joe_level_for_testing.umap +++ b/Content/FirstPerson/Maps/Joe_level_for_testing.umap @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f546ad95f2d698215c2f5dbb9463b2e6eb245393861cb1bdd683347cef9f0238 -size 92998 +oid sha256:8de7bd30d98e6fa758a7b2812fe1affeb92959990c3721d9d19f2f0655712769 +size 92615 diff --git a/Content/FirstPersonArms/Character/Materials/Instances/Manny/MI_Manny_01.uasset b/Content/FirstPersonArms/Character/Materials/Instances/Manny/MI_Manny_01.uasset index ec7339f..f4ea839 100644 --- a/Content/FirstPersonArms/Character/Materials/Instances/Manny/MI_Manny_01.uasset +++ b/Content/FirstPersonArms/Character/Materials/Instances/Manny/MI_Manny_01.uasset @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4a5b5e6f92525b29e56040c76e0bc31088d5eabeacd0968daa4a7b0b449b42e1 -size 22804 +oid sha256:2cc01b2b82a5c9aaf832a814d4255338d50d527e2e4e39a8a59650f87faf3cd5 +size 22664 diff --git a/GAM305_FirstPerson.uproject b/GAM305_FirstPerson.uproject index 420d4d0..73bfd00 100644 --- a/GAM305_FirstPerson.uproject +++ b/GAM305_FirstPerson.uproject @@ -11,5 +11,8 @@ "Editor" ] } + ], + "TargetPlatforms": [ + "Windows" ] } \ No newline at end of file