top of page

Backrooms

Backrooms was a small project I took upon myself in order to keep working in Unreal over the last month of summer before school. Taking inspirations from Slender, the player has to collect 7 pages to escape the Backrooms. I did all of the coding while  downloading assets from the UE Marketplace. It was a lot of fun, and I learned how to use AI and Decision Trees in the process!

Click to Scroll!

The main takeaway from this project is learning how to create basic AI using Decision Trees. The basics of this tree are based on one variable: if the Enemy can see the Player. This is done using an AI Perception asset attached to the Enemy Controller. If the Enemy cannot see the player, the AI checks another Boolean. If the Enemy saw the Player before it no longer sees them, then the Enemy goes to the Last Known Location of the Player. After that, the basic patrol of the AI initiates. ClearFocus ensures that the AI doesn't see any Player, and following that GetTargetLocation grabs a random point in the level to travel towards. This is done by picking a random index from an array of Patrol Points placed in the Level. MoveToFast takes that Patrol Point's location, and the Enemy travels towards it. Once the Enemy reaches it, it then picks a new Patrol Point and the cycle continues.

If the Enemy spots the Player, then the AI moves to the right side of the Decision Tree. The AI Focuses straight on the Player, and immediately following that gets the location of the Player in World Space. From there the Enemy runs the same MoveToFast command once again, but this time the location is the Player's location. If the Enemy reaches the Player, then the Enemy attacks the Player. If the Player gets out of sight from the Enemy, the Enemy continues moving to the last point it saw the Player, then either resumes chase if it sees the Player again or otherwise returns to Patrolling.

UPDATES

HighresScreenshot00000.png
IMG_1842.jpg
IMG_1841.jpg

Map Expansion

Added Lights with Darkened Atmosphere

HighresScreenshot00007.png
HighresScreenshot00008.png
FlashlightCode.PNG

Random Sound Triggers While Exploring

RandomSound.PNG
SoundBoxes.PNG

Updated Demon Behavior Tree

BehaviorTree.PNG
EnemyPaperCode.PNG
GoToPaper.PNG

Demon now moves to paper location once it's picked up

Random events occur on paper pickup, more occurring as more are picked up

PickupEventCode.PNG

Increase Demon Speed

Dim the Player's Light

Spawn a Demon at Start

Blind the Player

Remove Player Sprint

Play a Random Sound

Remove Light and Sound from the Demon

Dropped Glowstick that Dims Over 5 Minutes (Max of 25 in Inventory)

Glowstick.PNG
PlayerGlowstickDrop.PNG
GlowstickDimming.PNG

Flashlight Update: Loses Charge Over Time and Gains Charge Back After Lack of Use

FlashlightLoseCharge.PNG

Flashlight Update 2: Change in Intensity/Focus Angle

Page Art (Inspiration from Slender)

Click to Scroll!

Interact Hand When Close to Page

PageHand.PNG
bottom of page