Unreal Engine 4 is a game engine created by Epic Games. Use this tag for programming related questions. For non-programming related questions, use https://gamedev.stackexchange.com/.
Is it possible to stream an audio (RESTApi ) in UE4 for a game, I checked the audio docs from UE4, seems like we need to drop audio files as an asset and load it accordingly, is there any possibility to stream audio from the server as a simple HTTP…
I have an USkeletalMeshComponent. I have a need to move visible mesh separately from its physical body instance, i.e. instantly move physical body to a new location and smoothly move visible mesh to that location over time. I want to do this for…
I have to create object like this:
UStaticMeshComponent* staticMesh = CreateDefaultSubobject(TEXT("CustomStaticMesh"));
But I don't get how this works. Why do I add that angle bracket? I understand it has to do with templates…
I am trying to add dynamically a child in a SScrollBox but I get error.
TSharedRef MainCanvas = SNew(SScrollBox);
TSharedRef < SButton> TestButton = SNew(SButton);
MainCanvas->AddChild(TestButton); //AddChild not defined
It seems that…
Currently I have a class for my character like so:
.h
#include "CoreMinimal.h"
#include "GameFramework/Character.h"
#include "DarkFantasies_MainCharacter_Base.generated.h"
class USpringArmComponent;
class UCameraComponent;
class…
How to change camera position for vr project in unreal engine?
I want the camera to be always in the middle of the collider
camera->setWorldLocation doesn't work(((
enter image description here
enter image description here
I have a texture material that changes between 2 textures. This change can be controller by a variable. I've made a material instance from this material as well as a blueprint that has an object in it, to which this MI texture is applied to. I was…
trying to get my project up and running on macos big sur, but I'm facing a linking error (full paste here : https://pastebin.com/raw/qt7qkjYu):
[10/13] Link UE4Editor-LastRenegade.dylib
Undefined symbols for architecture x86_64:
…
I try to connect the iPhone X app - Live Link Face with UE4 but I have a problem. I connect everything from the tutorial and from Epic docs but still have a problem. Live link subject name doesn't recognize my iPhone device. I put the IP address…
FirstPersonCharacterBlueprint
How can I convert the DoN node into C++ in Unreal Engine?
I attached an image of my BP for the Double Jump feature.
I try and test this BP for the Double Jump feature in my project, but my teacher asks me to do this…
I have created a mirror system which rapidly spawns and destroys actors however whenever i try to spawn multiple at once and then destroy them soon after, my engine completely freezes up and i have to close it via task manager.
Heres my code for…
I have recently begun working on a game for a uni project and will visit this site probably a lot while encountering problems. This time it's a small but annoying problem.
I am doing a 2D sidecroller so I used the template for it to get me started.…
in my code i have the following line
imgs = client.simGetImages([
airsim.ImageRequest("0", airsim.ImageType.Scene, False, False)], vehicle_name = name)
imgs doesn't contain anything. Do we need to enable some camera in AirSim ? I am…
I uploaded a game to google play, and some people keep getting this crash. I can't understand where is the problem. If someone has a solution, please tell me
java.lang.IllegalStateException:
at com.google.android.gms.internal.zzlx.a (Unknown…
I'm working on a Pong-like game and I'm having difficulty with getting the button in the PaddleColors widget to affect all levels. (Menu, 1vAI, 1v1Game, 2v2Game)
For a button example: I set up the blueprint so that when I click the Green button in…