Skip to content
Snippets Groups Projects
Commit 4c2681df authored by Jonathan Ehret's avatar Jonathan Ehret
Browse files

minor improvement to avoid runtime undefined errors

parent 7a4e489e
No related branches found
No related tags found
No related merge requests found
......@@ -83,11 +83,11 @@ struct FGazingBoneData
// at what yaw angle should the right blendshape be at 1.0 (it will not go further
UPROPERTY(EditAnywhere, meta = (EditCondition = "bUseBlendshapeOutput"))
float YawAngleAtFull;
float YawAngleAtFull = 25.0f;
// at what pitch angle should the right blendshape be at 1.0 (it will not go further
UPROPERTY(EditAnywhere, meta = (EditCondition = "bUseBlendshapeOutput"))
float PitchAngleAtFull;
float PitchAngleAtFull = 25.0f;
//used internally:
FTransform DefaultTargetBoneTransform;
......
......@@ -30,7 +30,7 @@ struct FDialogueUtterance
// to specify of which gender the agent should be, this dialogue is assigned to
UPROPERTY(EditAnywhere)
EVHGender Gender;
EVHGender Gender = EVHGender::Divers;
//optional: the content/text of the utterance
UPROPERTY(EditAnywhere)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment