Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 게임개발
- 마인크래프트뮤지컬
- 레베카
- 으
- 데이터베이스
- flask
- R
- node
- 정글사관학교
- 프린세스메이커
- Bootstrap4
- 스마일게이트
- 디자드
- Express
- Jinja2
- 스터디
- 카렌
- EnhancedInput
- 알고풀자
- Unseen
- JWT
- 미니프로젝트
- 언리얼프로그래머
- 파이썬서버
- Ajax
- 언리얼뮤지컬
- 프메
- Enhanced Input System
- 언리얼
- VUE
Archives
- Today
- Total
Showing
「Unreal」 vr painting 프로젝트 사전조사 본문
https://youtu.be/TckqNdrdbgk?si=o5LXLYuF1-ifJ9ws tilt brush
https://youtu.be/h3TrGxojF_w?si=-bTg1Co7fYcpFiGC
https://youtu.be/DafgiEcXr6c?si=vJwVRw0FP4ibZNDU
ETriggerEvent::Triggered
// Called to bind functionality to input
void APlayerPawn::SetupPlayerInputComponent(UInputComponent* PlayerInputComponent)
{
Super::SetupPlayerInputComponent(PlayerInputComponent);
if (UEnhancedInputComponent* EnhancedInputComponent = CastChecked< UEnhancedInputComponent>(PlayerInputComponent))
{
EnhancedInputComponent->BindAction(MoveAxis, ETriggerEvent::Triggered, this, &APlayerPawn::Move);
EnhancedInputComponent->BindAction(FireAction, ETriggerEvent::Triggered, this, &APlayerPawn::Fire);
}
}
Fire
쿨타임 설정을 따로 안해주면, 총알이 연이어서 발사가 되면서 이어져보이는 시각적 효과를 보여준다.
void APlayerPawn::Fire(const FInputActionValue& value) // value = IA_Fire bool
{
if (Controller && value.Get<bool>()==true) {
GetWorld()->SpawnActor<ABullet>(magazine, myArrowComp->GetComponentLocation(),myArrowComp->GetComponentRotation());
}
}
https://youtu.be/zP_paWcXkaE?si=UTf4a_Ukzh2saLp4
Generative Art : 오브젝트가 연속적으로 특정 방향으로 생성됨
+ vfx
https://youtu.be/hiwGSEws50w?si=AtLzV5EMUb3WPz8Z
https://youtube.com/shorts/-YW8FPaofEI?si=fidOCqW_Y7R-WxN4
'Unreal' 카테고리의 다른 글
[Unreal] 언리얼 좌표계 Pitch, Roll, Yaw 이해와 짐벌락 이슈 해결 (0) | 2023.10.23 |
---|---|
[Unreal] Meta Human 제작 후 언리얼 3D 캐릭터에 입히기 (0) | 2023.10.20 |
[언리얼] Unreal C++로 Player를 쫓아오는 Enemy 구현 (0) | 2023.10.19 |
[Unreal] 언리얼 git 세팅 (0) | 2023.10.04 |
[언리얼] p = p0 + vt 이동로직 블루프린트와 c++로 작성하기 (0) | 2023.09.26 |