Esempio n. 1
0
 private static bool isRight(string boneName)
 {
     return(BipedNaming.matchesNaming(boneName, BipedNaming.typeRight) || BipedNaming.lastLetter(boneName) == "R" || BipedNaming.firstLetter(boneName) == "R");
 }
Esempio n. 2
0
 private static bool isLeft(string boneName)
 {
     return(BipedNaming.matchesNaming(boneName, BipedNaming.typeLeft) || BipedNaming.lastLetter(boneName) == "L" || BipedNaming.firstLetter(boneName) == "L");
 }