elect
01/28/2017, 11:39 AMpPerIndexChannels.filter {
if (it.mResolved == null)
true
// ignore vertex pointer, it doesn't refer to an accessor
else if (it.mType == InputType.Vertex) {
// warn if the vertex channel does not refer to the <vertices> element in the same mesh
if (it.mAccessor != pMesh.mVertexID)
throw Exception("Unsupported vertex referencing scheme.")
true
}
else
false
}