? 色久综合网精品一区二区,91短视频污污下载大全,一本大道久久香蕉成人网
聯(lián)系我們

給我們留言

聯(lián)系我們

地址:福建省晉江市青陽(yáng)街道洪山路國(guó)際工業(yè)設(shè)計(jì)園納金網(wǎng)

郵箱:info@narkii.com

電話:0595-82682267

(周一到周五, 周六周日休息)

當(dāng)前位置:主頁(yè) > 3D教程 > 圖文教程

UE4設(shè)置MovementMode

來(lái)源: 52vr | 責(zé)任編輯:傳說(shuō)的落葉 | 發(fā)布時(shí)間: 2019-06-06 08:18 | 瀏覽量:

UE4內(nèi)置了一些行為模式,比如:Walking、Flying等,這兩種是UE4提供的現(xiàn)成的移動(dòng)模式,使用Walking移動(dòng)對(duì)象會(huì)受重力影響,如果是用Flying不受重力影響,只有設(shè)置為Flying模式,就不需要你寫代碼來(lái)考慮重力的問(wèn)題。

也可以自定義移動(dòng)模式,比如:項(xiàng)目中有兩個(gè)狀態(tài),行走和爬梯子,爬梯子是一個(gè)復(fù)雜的動(dòng)畫邏輯,切換到爬梯子動(dòng)畫時(shí)需要設(shè)置一系列數(shù)據(jù),那么可以將這些設(shè)置操作定義為一種MovementMode,然后每次切換時(shí)只需要一行代碼,相當(dāng)于封裝成一個(gè)函數(shù)。

 

藍(lán)圖方式

在Character藍(lán)圖中:Character Movement -》 Set Movement Mode

 

[UE4]設(shè)置MovementMode

 

C++方式

Cpp代碼  收藏代碼
  1. MyCharacter->GetCharacterMovement()->SetMovementMode(EMovementMode::MOVE_Flying);  

 

其他參考:

UCharacterMovementComponent::SetMovementMode

https://docs.unrealengine.com/latest/INT/API/Runtime/Engine/GameFramework/UCharacterMovementComponent/SetMovementMode/index.html

How to make blueprints can swith to flying mode

https://answers.unrealengine.com/questions/88390/how-to-make-blueprints-can-swith-to-flying-mode.html

Blueprint Creating Custom Character Movement Component

https://wiki.unrealengine.com/Blueprint_Creating_Custom_Character_Movement_Component


相關(guān)文章
網(wǎng)友評(píng)論

您需要登錄后才可以發(fā)帖 登錄 | 立即注冊(cè)

關(guān)閉

全部評(píng)論:0條

推薦
熱門