SND\AstrorEnales_cp 5505f7dcbf - Added PlatformSystem Plugins layer
- Started Windows, Metro and Linux Platform-Plugins
- Moved the RecordingSample to the Samples folder
- Started two samples for using the graphics device in a WinForms and Wpf Editor
- Refactorings in the AddIn-System
- Moved the Window initialization-code to the Platform modules
- Changed the License text in all code files which is now way smaller
- Started ProjectConverter tool which converts all the projects and solution to the target configuration
- Changed the SupportedPlatform names in the Resource files
- Changed the WIN8 define to WINDOWSMETRO which is actually meant
- Removed NLog and started our own Logger class
- Many more stuff...
2012-08-09 09:45:04 +00:00

70 lines
1.9 KiB
C#

#region Using Statements
using System;
#endregion // Using Statements
// This file is part of the ANX.Framework created by the
// "ANX.Framework developer group" and released under the Ms-PL license.
// For details see: http://anxframework.codeplex.com/license
namespace ANX.Framework.GamerServices
{
public enum AvatarBone
{
Root = 0,
BackLower = 1,
HipLeft = 2,
HipRight = 3,
BackUpper = 5,
KneeLeft = 6,
KneeRight = 8,
AnkleLeft = 11,
CollarLeft = 12,
Neck = 14,
AnkleRight = 15,
CollarRight = 16,
Head = 19,
ShoulderLeft = 20,
ShoulderRight = 22,
ToeLeft = 21,
ToeRight = 23,
ElbowLeft = 25,
ElbowRight = 28,
WristLeft = 33,
FingerIndexLeft = 37,
WristRight = 36,
FingerMiddleLeft = 38,
FingerRingLeft = 39,
FingerSmallLeft = 40,
PropLeft = 41,
SpecialLeft = 42,
FingerThumbLeft = 43,
FingerIndexRight = 44,
FingerMiddleRight = 45,
FingerRingRight = 46,
FingerSmallRight = 47,
PropRight = 48,
SpecialRight = 49,
FingerThumbRight = 50,
FingerIndex2Left = 51,
FingerMiddle2Left = 52,
FingerRing2Left = 53,
FingerSmall2Left = 54,
FingerThumb2Left = 55,
FingerIndex2Right = 56,
FingerMiddle2Right = 57,
FingerRing2Right = 58,
FingerSmall2Right = 59,
FingerThumb2Right = 60,
FingerIndex3Left = 61,
FingerMiddle3Left = 62,
FingerRing3Left = 63,
FingerSmall3Left = 64,
FingerThumb3Left = 65,
FingerIndex3Right = 66,
FingerMiddle3Right = 67,
FingerRing3Right = 68,
FingerSmall3Right = 69,
FingerThumb3Right = 70,
}
}