How to control the speed of a character/object by touch? Hello everyone, I am new to Unreal engine and currently, I am creating a small game for mobile phones. I would like to control the speed of the object/character by touching anywhere in the mobile screen. Say for example in Aspault 8 game, to raise...
How can I update the text on the text widget? Lets say I want to do so when a button is pressed on the UI. Right now I have a simple button, and I want to use the on clicked event to trigger the creation of a text widget, and I want to be able to set that text when it is created.
Good answer and thanks for letting me know about ensure () Chenglin, if you want more information on the topic I’d recommend googling “C++ when to use assert” and such, since as Steve pointed out check () is like assert ().
Hello, I wonder if someone might help me? I am spawning actors in random locations within the bounds of a volume. I would like to use the Move Component To node in order to move the spawned item to the “ground” or, anything it comes into contact with on the way, I’ll just refer to this as “ground” for now. The reason I would like to get hold of the distance is that I plan to give ...
Aboud volume size In Unreal 5.3 preview volume size is not normalized. So it would look weird at scale 1,1,1. You can find the correct size of volume in SVT asset, or in HV’s detail panel. Set the scale to the volumes accordingly. This issue is fixed in official 5.3 Transparency sorting is weird, avoid volume overlap at all costs Volumes don ...
You can unpack PAK files using UNREALPAK.EXE which comes with the engine. You may or may not be able to do that, because often, vendors encrypt the PAK file, although it doesn’t sound like it here. So you unpack, change the asset for your replacement, and repack. Good luck with that. Here’s a vid on using unrealpak:
Do you want to learn UNREAL ENGINE 5? Well we have an amazing news 🥳! We just completed our ULTIMATE Unreal Engine 5 Tutorial Series for Beginners. Here is the link to the Playlist This is our most ambitious project to date in which we aimed to create an entry point for everyone, whether you’re familiar with 3D from other software like Blender or C4D, or have no experience at all. This ...
Hey, I tried to start the new Unreal version 5.4 but I get an Error: Unreal Zen Storage Server failed to launch. Please check the ZenServer log file for details:… 5.3 starts with no problems.
GENERATED_BODY() public: UFUNCTION() virtual bool IsComplete() { return true; } }; This compiles cleanly, but when I attempt to declare it like a struct, unreal crashes: UQuestObjective testObjective; testObjective.IsComplete(); I assume you can’t declare classes like structs, so I’m wondering how do you safely initialize and destroy one?