泰课首页
技术分享
Unity课程
Manual
Scripting API
unity3d.com
Version:
2019.1
2019.3
2019.2
2019.1
2018.4
2018.3
2018.2
2018.1
2017.4
2017.3
2017.2
2017.1
5.6
Manual
Scripting API
Language:
中文
English
日本語
Español
한국어
Scripting API
Version:
2019.1
2019.3
2019.2
2019.1
2018.4
2018.3
2018.2
2018.1
2017.4
2017.3
2017.2
2017.1
5.6
Animator
.SetLookAtWeight
Switch to Manual
public void
SetLookAtWeight
(float
weight
);
public void
SetLookAtWeight
(float
weight
, float
bodyWeight
);
public void
SetLookAtWeight
(float
weight
, float
bodyWeight
, float
headWeight
);
public void
SetLookAtWeight
(float
weight
, float
bodyWeight
, float
headWeight
, float
eyesWeight
);
public void
SetLookAtWeight
(float
weight
, float
bodyWeight
= 0.0f, float
headWeight
= 1.0f, float
eyesWeight
= 0.0f, float
clampWeight
= 0.5f);
Parameters
weight
(0-1) LookAt 的全局权重,其他参数的乘数。
bodyWeight
(0-1) 确定执行 LookAt 的身体比重。
headWeight
(0-1) 确定执行 LookAt 的头部比重。
eyesWeight
(0-1) 确定执行 LookAt 的眼睛比重。
clampWeight
(0-1) 0.0 表示角色在运动时完全不受限制,1.0 表示角色被完全固定(无法执行 LookAt),0.5 表示角色能够移动可能范围的一半(180 度)。
Description
设置 LookAt 权重。