본문 바로가기

전체 글20

[UE 5 C++] 하나의 input으로 여러개의 Pawn 움직이기 1. 코드 작성하기 header // Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "CoreMinimal.h" #include "GameFramework/Pawn.h" #include "Myplayer.generated.h" UCLASS() class STUDY_API AMyplayer : public APawn { GENERATED_BODY() public: // Sets default values for this pawn's properties AMyplayer(); protected: // Called when the game starts or when spawned v.. 2023. 11. 26.
[UE 5 C++]플레이어 input 두 축으로 움직이기 cpp // Fill out your copyright notice in the Description page of Project Settings. #include "Myplayer.h" // Sets default values AMyplayer::AMyplayer() { // Set this pawn to call Tick() every frame. You can turn this off to improve performance if you don't need it. PrimaryActorTick.bCanEverTick = true; MeshComp = CreateDefaultSubobject(TEXT("MeshComp")); } // Called when the game starts or when s.. 2023. 11. 26.
231006 언리얼 엔진 로그 로그 (UE_LOG) UE+LOG(LogTemp, Log, TEXT("Hello")); //UE_LOG('로그 카테고리', '로그 상세 수준', 로그 내용'); //FString UE_LOG(LogTemp, Warning, TEXT("The Actor's name is %s"), *YourActor->GetName()); //bool UE_LOG(LogTemp, Warning, TEXT("The boolean value is %s"), ( bYourBool ? TEXT("true") : TEXT("false") )); //int UE_LOG(LogTemp, Warning, TEXT("The integer value is: %d"), YourInteger); //float UE_LOG(LogTemp, Wa.. 2023. 10. 6.
231006 오늘의 아이스브레이킹 https://www.pugetsystems.com/blog/2023/10/04/unreal-engine-no-longer-free-in-2024/ Unreal Engine No Longer Free in 2024 At Unreal Fest 2023, Epic announced that Unreal Engine will no longer be free in 2024. What does this mean for current users? www.pugetsystems.com https://www.mixamo.com/ Mixamo www.mixamo.com https://lumalabs.ai/luma-api Luma AI - Video to 3D API Capture the world .. 2023. 10. 6.