본문 바로가기

전체보기100

UE4 블루 프린트 함수 _Implementation 12345UFUNCTION(BlueprintCallable, Category = "Test") //블루 프린트에서 사용될 함수이다. void TestFunction(); //만약 블루 프린트에서 사용되지 않는다면 사용될 함수이다. void TestFunction_Implementation();cs 2016. 4. 21.
UE4 Actor의 이동 123456789 void ARollingBall::MoveBall(){ //속도는 델타타임을 곱하여 runtime과 동기화 시키고 float speed = MoveSpeedForDeltaTime * MoveDeltaTime; //현재 위치 + 방향 * 속도 를 새로운 위치로 넣어준다. FVector newLocation = GetTransform().GetLocation() + (CurrentGoalDirection * speed); RootComponent->SetWorldLocation(newLocation);}Colored by Color Scriptercs 2016. 4. 21.
UE4 lerp를 이용한 자연스러운 회전과 angle 구하기 Step 1. Angle값 구하기. 123456789101112131415161718192021222324252627282930313233 FVector Dest = FVector(GoalPosition.X, GoalPosition.Y, 0.0f); FVector Start = FVector(GetTransform().GetLocation().X, GetTransform().GetLocation().Y, 0.0f); FVector dir = Dest - Start; GoalDirection = dir.SafeNormal(); //노말라이징한 두개의 백터를 dot한다. //여기서 축을 Z축으로 하기 위해 두백터의 Z값을 0.0f로 넣어 주었다. float dot = FVector::DotProduct(FV.. 2016. 4. 20.
UE4 두백터를 이용한 방향(Direction)과 회전 Angle 구하는 코드 123456789101112131415161718192021222324252627282930313233 FVector Dest = FVector(GoalPosition.X, GoalPosition.Y, 0.0f); FVector Start = FVector(GetTransform().GetLocation().X, GetTransform().GetLocation().Y, 0.0f); FVector dir = Dest - Start; GoalDirection = dir.SafeNormal(); //노말라이징한 두개의 백터를 dot한다. //여기서 축을 Z축으로 하기 위해 두백터의 Z값을 0.0f로 넣어 주었다. float dot = FVector::DotProduct(FVector::ForwardVector.. 2016. 4. 20.