XFileGuid.FloatKeys Field (Microsoft.DirectX.Direct3D)
Retrieves the globally unique identifier (GUID) for an array of floating-point numbers (floats) and the number of floats in the array.
Definition
Visual Basic Public Shared FloatKeys As Guid C# public static Guid FloatKeys;
C++ public: static Guid FloatKeys;
JScript public static var FloatKeys : Guid
Field Value
System.Guid
A Guidvalue that is used for templates that consist of an array of floating-point numbers, and the number of floats in that array in XFiles (.x).
This field is read-only.
Remarks
This field is used for defining sets of animation keys.
The following is a FloatKeys template.
[C#]template FloatKeys { < 10DD46A9-775B-11cf-8F52-0040333594A3 > DWORD nValues; array float values[nValues]; }Where:
- nValues - Number of floats.
- values[nValues] - Array of float values.
.gif)