본문 바로가기

언리얼러닝

(20)          글쓰기    
Working with Additional Assets 만일 프로젝트를 만들때 StartKit를 포함하지 못하셨다면 좌측아래 Content Drawer를 클릭후 +Add후 Add Feature or Content Pack을 클릭후 창이 뜨면 위쪽 중간 Content탭을 클릭후 Starter Content를 추가할 수 있습니다. 기타 Blueprint, C++ 컨텐트로 추가할 수 있습니다. 맨처음 온라인러닝 킷을 구매했습니다. 이걸 열어보겠습니다. 에픽게임즈런처 라이브러리를 클릭하면 내프로젝트에 아까 만든 OnlineLearningKit가 보입니다. 클릭해서 오픈합니다. 뷰포트가 보입니다. 이 스테이즈를 이전에 만든 YourFirstHour프로젝트로 Export하겠습니다. 좌측아래 컨텐트드로워를 클릭후 Content>EOL_Content>Meshes>SM_Fl..
Creating Your First Project https://dev.epicgames.com/community/learning/courses/3ke/your-first-hour-in-unreal-engine-5-2/4Ovq/unreal-engine-creating-your-first-project Your First Hour in Unreal Engine 5.2 | Course In this course from Epic Online Learning, we cover the high-level basics of Unreal Engine 5.2. Learn to create new projects using project templates and ... dev.epicgames.com 언리얼5.2를 실행시키고 Games Catagory에서 ThirdP..
Introduction to Your First Hour in Unreal Engine 5.2 https://dev.epicgames.com/community/learning/courses/3ke/your-first-hour-in-unreal-engine-5-2/4Ovq/unreal-engine-creating-your-first-project Your First Hour in Unreal Engine 5.2 | Course In this course from Epic Online Learning, we cover the high-level basics of Unreal Engine 5.2. Learn to create new projects using project templates and ... dev.epicgames.com 에픽게임스 런처를 실행하고 마켓플레이스 무료>UE온라인러닝을 실행합..
마켓플레이스 UE 온라인러닝 에픽게임즈런처를 실행하고 마켓플레이스>무료>UE온라인러닝을 실행하면 다양한 강좌가 있다
[C++ 게임 만들기 1부] 사이드 스크롤러 : LevelSpawner Class And Procedural Level Generation 이 자습서 시리즈의 2부 에서는 장애물 및 레벨 클래스를 만들고 해당 클래스에서 청사진을 만들었습니다. 튜토리얼의 이 부분에서는 절차적 레벨 생성이라는 방법을 사용하여 게임에서 레벨 부분을 스폰할 것입니다. 레벨 스포너 클래스 C++ 클래스 -> SideRunner에서 오른쪽 클릭 -> 새 C++ 클래스를 클릭합니다. 클래스가 Actor 클래스를 상속하는지 확인하고 클래스 이름을 LevelSpawner로 지정한 다음 Create Class 버튼을 클릭합니다. Visual Studio에서 LevelSpawner.h 파일을 열고 클래스 선언 위에 다음 코드 줄을 추가합니다. class ABaseLevel; 이 자습서 시리즈의 이전 부분에서 생성한 레벨 부분에 대한 참조를 추가할 것이기 때문에 BaseLeve..
Create A Side Scroller C++ Game In Unreal Engine Part 2: Creating Obstacles And Level Parts For Our Game https://awesometuts.com/blog/unreal-engine-side-scroller-cpp-2/ Create A Side Scroller C++ Game In Unreal Engine Part 2: Creating Obstacles And Level Parts For Our Game Reading Time: 14 minutes In part two of this tutorial series we are going to create C++ classes for the obstacles and level parts. Then we will create multiple blueprints out of those classes that will form the level for our game..
[C++ 게임 만들기 1부] 사이드 스크롤러 : 플레이어 액터 https://awesometuts.com/blog/unreal-engine-side-scroller-cpp-1/ Create A Side Scroller C++ Game In Unreal Engine Part 1: Creating The Player Actor C++ Class And Its Functionalities Reading Time: 18 minutes In the first part of this tutorial series we are going to create the player actor C++ class and model the movement behaviour of the player actor awesometuts.com 이 튜토리얼에서는 Unreal Engine과 C++를 사..
언리얼 C++ Hello UI_LOG 일단 프로젝트부터 만들어 보자. 사용버전은 5.2라 V4.x와는 내용이 다를수 있습니다. 사실 이득우의 C++로 공부하려고 했는데 내용이 전혀 달라 그냥 베르님의 유튜브로 공부하기로 했습니다. https://www.youtube.com/watch?v=DkJqLIpSvik 게임>ThirdPerson>C++를 선택하자 블루프린트가 아닌 C++. 이름을 대충정하자. C++클래스 생성 메뉴 Tools>New C++ Class나 컨텐트드로워 C++Classes폴더에서 +Add나 우클릭하면 된다.(다른폴더는 안된다) 부모클래스는 레벨에서 사용할 수 있는 Actor클래스를 선택하고 이름은 디폴트인 MyActor를 사용한다. VisualStudio가 뜨는데 뭔가 라이브코딩이라는 화면이 뜨는데 무시하고 닫아주면된다. C..