mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2026-05-23 15:03:06 +08:00
Peds form beginnings, new MetaNames, updated index field types for Bone, added EBoneFlags
This commit is contained in:
@@ -1136,7 +1136,7 @@ namespace CodeWalker.Rendering
|
||||
if (xforms != null)//how to use xforms? bind pose?
|
||||
{
|
||||
var xform = (i < xforms.Length) ? xforms[i] : Matrix.Identity;
|
||||
var pxform = (pind < xforms.Length) ? xforms[pind] : Matrix.Identity;
|
||||
var pxform = ((pind >= 0) && (pind < xforms.Length)) ? xforms[pind] : Matrix.Identity;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user