small data fix
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
This commit is contained in:
parent
57f2befc0e
commit
1df8a89b3e
@ -202,7 +202,7 @@
|
||||
{
|
||||
"followsView" : false,
|
||||
"followsBone" : true,
|
||||
"parentBone" : "myTorsoBone",
|
||||
"parentBone" : "Bone",
|
||||
"allowedMarginYaw" : 0.2
|
||||
}
|
||||
]
|
||||
@ -213,7 +213,7 @@
|
||||
{
|
||||
"followsView" : false,
|
||||
"followsBone" : true,
|
||||
"parentBone" : "myTorsoBone",
|
||||
"parentBone" : "Bone",
|
||||
"allowedMarginYaw" : 0.2
|
||||
}
|
||||
]
|
||||
|
||||
@ -220,7 +220,7 @@
|
||||
{
|
||||
"followsView" : false,
|
||||
"followsBone" : true,
|
||||
"parentBone" : "myTorsoBone",
|
||||
"parentBone" : "Bone",
|
||||
"allowedMarginYaw" : 0.2
|
||||
}
|
||||
]
|
||||
@ -231,7 +231,7 @@
|
||||
{
|
||||
"followsView" : false,
|
||||
"followsBone" : true,
|
||||
"parentBone" : "myTorsoBone",
|
||||
"parentBone" : "Bone",
|
||||
"allowedMarginYaw" : 0.2
|
||||
}
|
||||
]
|
||||
|
||||
@ -10,4 +10,4 @@
|
||||
fix rendering pipelines (black when looking at character from angle with item, shadows are not darker color, etc)
|
||||
|
||||
+ bug fixes
|
||||
fix client-attached models drawing on previous frame
|
||||
fix client-attached models to viewmodel drawing on previous frame
|
||||
|
||||
@ -309,7 +309,9 @@ public class Actor {
|
||||
Quaterniond rotation = new Quaterniond(axisAngle);
|
||||
rVal.set(rotation);
|
||||
} else {
|
||||
throw new IllegalArgumentException("Trying to get rotation of bone that does not exist on model!");
|
||||
String message = "Trying to get rotation of bone that does not exist on model!\n" +
|
||||
"boneName: " + boneName;
|
||||
throw new IllegalArgumentException(message);
|
||||
}
|
||||
}
|
||||
if(!Double.isFinite(rVal.x)){
|
||||
|
||||
Loading…
Reference in New Issue
Block a user