Ive been trying to make a first person point and click horror game in unreal for months now and the only thing im stuck on is being able to rotate the camera with your mouse and being chased by enemy ai
Download a copy of the horror engine. It’s free, and contains everything you’d need to make this sort of game
https://www.unrealengine.com/marketplace/en-US/product/horror-engine
Looking back, I can say that I spent 5 months learning UE before I started creating more or less usable projects.
I think you should check out the tutorials on how to set up a first-person camera. To rotate the camera with the mouse, you need to study the Enhanced Input System. It’s not difficult at all. And in order for the enemy to chase the player, you need to add the Pawn Sensing Component and use the AI moveTo node for the On See Pawn event.
I do not advise you to use Horror Engine, because instead of trying to understand the UE design and programming yourself, you will have to understand someone else’s system, which, by the way, I really did not like.
im not gonna use this, first off it doesnt have what im looking for, second of its made by someone else im trying to make everything my self the only thing i will use that is a market place asset is UDS
hey im trying to make movement as seen in the video: https://youtu.be/CXXTdWPqT50?si=oGbQPF4MYlOK91E-&t=432 just in real time
also i tried horror engine and it doesnt really have what im trying to do
Everything in the world is made by someone else.
The point is to study the available examples, to learn how pieces work, that you can then put together in a different way yourself.
that is true but its something im not looking for and as i said before i did try it but it doesnt have something that i need really
SetShowMouseCursor true
SetMouseCursorWidget (create you own widget)
SetInput mode to GameAndUI
OnTick get cursorposition use this to determine if you want to move up, left etc
also get hitresultundercursor to check if there is an interactable object which would override movement.
that should get you started
this might work i will try it later!
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.