blob: e8881e5c8d44f330d9ac1d3fa3fc35725f07377a (
plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
using UnityEngine;
namespace BehaviorDesigner.Runtime.Tasks.Basic.UnityAnimator
{
[TaskCategory("Basic/Animator")]
[TaskDescription("Sets the look at weight. Returns success immediately after.")]
public class SetLookAtWeight : Action
{
[Tooltip("The GameObject that the task operates on. If null the task GameObject is used.")]
public SharedGameObject targetGameObject;
[Tooltip("(0-1) the global weight of the LookAt, multiplier for other parameters.")]
public SharedFloat weight;
[Tooltip("(0-1) determines how much the body is involved in the LookAt.")]
public float bodyWeight;
[Tooltip("(0-1) determines how much the head is involved in the LookAt.")]
public float headWeight = 1;
[Tooltip("(0-1) determines how much the eyes are involved in the LookAt.")]
public float eyesWeight;
[Tooltip("(0-1) 0.0 means the character is completely unrestrained in motion, 1.0 means he's completely clamped " +
"(look at becomes impossible), and 0.5 means he'll be able to move on half of the possible range (180 degrees).")]
public float clampWeight = 0.5f;
private Animator animator;
private GameObject prevGameObject;
public override void OnStart()
{
var currentGameObject = GetDefaultGameObject(targetGameObject.Value);
if (currentGameObject != prevGameObject) {
animator = currentGameObject.GetComponent<Animator>();
prevGameObject = currentGameObject;
}
}
public override TaskStatus OnUpdate()
{
if (animator == null) {
Debug.LogWarning("Animator is null");
return TaskStatus.Failure;
}
animator.SetLookAtWeight(weight.Value, bodyWeight, headWeight, eyesWeight, clampWeight);
return TaskStatus.Success;
}
public override void OnReset()
{
targetGameObject = null;
weight = 0;
bodyWeight = 0;
headWeight = 1;
eyesWeight = 0;
clampWeight = 0.5f;
}
}
}
|