I’m desperately in need of a mini-game template or tutorial, like a word search, memory card game, or any kind of puzzle game. This is for my final year project, and I have absolutely no budget to buy a template. I’m really struggling and feeling hopeless right now… if anyone can help me, I would be beyond grateful. Please, I’m begging for any kind of assistance!
There was old old template/example from unreal 4.1 or so era.
And just confirmed some templates are still in legacy samples in launcher.
And 20$ is not that much, this one is on fab.
Why did you wait to the last minute to ask for assistance on this LOL. Did you Youtube for UnrealEngine Puzzle Tutorials?
Do not want to be assuming and generalizing, but i cannot resist temptation.
Student, party hard (or play games), so no money left, and deadline is this monday.
That explain
And making small logic game may be not that easy. However there was really simple example at very beginning of unreal 4, just cannot remember its name.
For Puzzle Game Core Mechanic, i would use is Text-based Pattern Matching.
There are two puzzle objects, one object stores the text-based pattern to be matched, this is The Lock. The other object stores an identical text-based pattern that matches to Lock’s, this is The Key.
A simple comparison function is used to check if Key Matches Lock. IF they match SUCCESS ELSE FAIL.
- LOCK
- KEY
- Compare(LOCK,KEY){}
IF Key.TextPattern == Lock.TextPattern Return SUCCESS {1} ELSE Return FAIL {0}
With this core mechanic, complex combinations of puzzle objects could be represented as Whole or Composite 3D Objects, UMG Widgets, Plain Text, Audio, Inputs.
Hey Nawrot, I really appreciate your response. I desperately wanted any solution on this, but my currency exchange rate makes it quite expensive for me. I’ve tried searching for tutorials on YouTube, but I couldn’t find any help. My deadline isn’t this Monday, so I still have some time to figure it out. Sorry if I’m bothering you, and thank you again for your time!
(post deleted by author)
already search it but still can’t find the most suitable one but anyhow thanks ya!
Try this:
There is link to whole project in description (did not checked it yet).
However if this is for school assignment i think your teacher knows how to use google.
ps.
I can download it, it converts to 5.5 and i can run. But either i am stupid or its logic does not convert to 5.5. Cannot finish first puzzle.
Dang. Nice. I want this for myself. Would be cool as a First/ThirdPerson Platformer Puzzle. Thank You @Nawrot!